mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-12 22:30:36 +08:00
Fix non ascii character in comment (#82)
I was getting the following compilation errors when I pulled in this repo. ``` error: unmappable character for encoding ASCII ``` The root cause seems to be the character below was not from the ASCII set.
This commit is contained in:
committed by
Michał Osadnik
parent
e8d792d549
commit
54b5e75b11
@@ -77,7 +77,7 @@ public class Screen extends ViewGroup implements ReactPointerEventsView {
|
||||
|
||||
@Override
|
||||
public void setLayerType(int layerType, @Nullable Paint paint) {
|
||||
// ignore – layer type is controlled by `transitioning` prop
|
||||
// ignore - layer type is controlled by `transitioning` prop
|
||||
}
|
||||
|
||||
public void setNeedsOffscreenAlphaCompositing(boolean needsOffscreenAlphaCompositing) {
|
||||
|
||||
Reference in New Issue
Block a user