summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/data/MediaObject.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/gallery3d/data/MediaObject.java')
-rw-r--r--src/com/android/gallery3d/data/MediaObject.java17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/com/android/gallery3d/data/MediaObject.java b/src/com/android/gallery3d/data/MediaObject.java
index 9c82661f6..270d4cf0b 100644
--- a/src/com/android/gallery3d/data/MediaObject.java
+++ b/src/com/android/gallery3d/data/MediaObject.java
@@ -35,13 +35,12 @@ public abstract class MediaObject {
public static final int SUPPORT_CACHE = 1 << 8;
public static final int SUPPORT_EDIT = 1 << 9;
public static final int SUPPORT_INFO = 1 << 10;
- public static final int SUPPORT_IMPORT = 1 << 11;
- public static final int SUPPORT_TRIM = 1 << 12;
- public static final int SUPPORT_UNLOCK = 1 << 13;
- public static final int SUPPORT_BACK = 1 << 14;
- public static final int SUPPORT_ACTION = 1 << 15;
- public static final int SUPPORT_CAMERA_SHORTCUT = 1 << 16;
- public static final int SUPPORT_MUTE = 1 << 17;
+ public static final int SUPPORT_TRIM = 1 << 11;
+ public static final int SUPPORT_UNLOCK = 1 << 12;
+ public static final int SUPPORT_BACK = 1 << 13;
+ public static final int SUPPORT_ACTION = 1 << 14;
+ public static final int SUPPORT_CAMERA_SHORTCUT = 1 << 15;
+ public static final int SUPPORT_MUTE = 1 << 16;
public static final int SUPPORT_ALL = 0xffffffff;
// These are the bits returned from getMediaType():
@@ -120,10 +119,6 @@ public abstract class MediaObject {
return MEDIA_TYPE_UNKNOWN;
}
- public boolean Import() {
- throw new UnsupportedOperationException();
- }
-
public MediaDetails getDetails() {
MediaDetails details = new MediaDetails();
return details;