diff --git a/CameraRollManager.java b/CameraRollManager.java index c103f44..ff2ee2d 100644 --- a/CameraRollManager.java +++ b/CameraRollManager.java @@ -17,9 +17,7 @@ import java.io.FileOutputStream; import java.io.IOException; import java.nio.channels.FileChannel; import java.util.ArrayList; -import java.util.Collections; import java.util.List; -import java.util.Map; import android.content.ContentResolver; import android.content.Context; @@ -103,11 +101,6 @@ public class CameraRollManager extends ReactContextBaseJavaModule { return "RKCameraRollManager"; } - @Override - public Map getConstants() { - return Collections.emptyMap(); - } - /** * Save an image to the gallery (i.e. {@link MediaStore.Images}). This copies the original file * from wherever it may be to the external storage pictures directory, so that it can be scanned @@ -440,5 +433,4 @@ public class CameraRollManager extends ReactContextBaseJavaModule { node.putMap("location", location); } } - }