(android): Missing ; on constructor (#880)

On the RCTCameraModule is missing a ';' causing a build failure.
This commit is contained in:
gabrielSchaidhauer
2017-09-08 13:26:53 -07:00
committed by Zack Story
parent 618f5ec92f
commit 537b7696b4
@@ -88,7 +88,7 @@ public class RCTCameraModule extends ReactContextBaseJavaModule
_reactContext = reactContext;
_sensorOrientationChecker = new RCTSensorOrientationChecker(_reactContext);
_reactContext.addLifecycleEventListener(this);
sound.load(MediaActionSound.SHUTTER_CLICK)
sound.load(MediaActionSound.SHUTTER_CLICK);
}
public static ReactApplicationContext getReactContextSingleton() {