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:
Maytee Chinavanichkit
2019-03-28 19:25:54 +09:00
committed by Michał Osadnik
parent e8d792d549
commit 54b5e75b11

View File

@@ -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) {