Reverted commit D3334273
Reviewed By: astreet Differential Revision: D3334273 fbshipit-source-id: a3849604ea89db74900850c294685e7da9aeeacc
This commit is contained in:
parent
07a31681d7
commit
ba17804764
|
@ -50,7 +50,6 @@ import com.facebook.react.bridge.WritableArray;
|
||||||
import com.facebook.react.bridge.WritableMap;
|
import com.facebook.react.bridge.WritableMap;
|
||||||
import com.facebook.react.bridge.WritableNativeArray;
|
import com.facebook.react.bridge.WritableNativeArray;
|
||||||
import com.facebook.react.bridge.WritableNativeMap;
|
import com.facebook.react.bridge.WritableNativeMap;
|
||||||
import com.facebook.react.bridge.annotations.ReactModule;
|
|
||||||
import com.facebook.react.common.ReactConstants;
|
import com.facebook.react.common.ReactConstants;
|
||||||
|
|
||||||
// TODO #6015104: rename to something less iOSish
|
// TODO #6015104: rename to something less iOSish
|
||||||
|
@ -58,7 +57,6 @@ import com.facebook.react.common.ReactConstants;
|
||||||
* {@link NativeModule} that allows JS to interact with the photos on the device (i.e.
|
* {@link NativeModule} that allows JS to interact with the photos on the device (i.e.
|
||||||
* {@link MediaStore.Images}).
|
* {@link MediaStore.Images}).
|
||||||
*/
|
*/
|
||||||
@ReactModule(name = "RKCameraRollManager")
|
|
||||||
public class CameraRollManager extends ReactContextBaseJavaModule {
|
public class CameraRollManager extends ReactContextBaseJavaModule {
|
||||||
|
|
||||||
private static final String ERROR_UNABLE_TO_LOAD = "E_UNABLE_TO_LOAD";
|
private static final String ERROR_UNABLE_TO_LOAD = "E_UNABLE_TO_LOAD";
|
||||||
|
@ -100,6 +98,11 @@ public class CameraRollManager extends ReactContextBaseJavaModule {
|
||||||
super(reactContext);
|
super(reactContext);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getName() {
|
||||||
|
return "RKCameraRollManager";
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Map<String, Object> getConstants() {
|
public Map<String, Object> getConstants() {
|
||||||
return Collections.emptyMap();
|
return Collections.emptyMap();
|
||||||
|
@ -437,4 +440,5 @@ public class CameraRollManager extends ReactContextBaseJavaModule {
|
||||||
node.putMap("location", location);
|
node.putMap("location", location);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue