summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/FilterRepresentation.java
diff options
context:
space:
mode:
authornicolasroard <nicolasroard@google.com>2013-02-13 11:23:56 -0800
committernicolasroard <nicolasroard@google.com>2013-02-13 11:25:07 -0800
commit19b307f5ef03b63493bd29e8e838a22c323a370a (patch)
treead1634fba2aae6786803f2191fea56ce62cfadbb /src/com/android/gallery3d/filtershow/filters/FilterRepresentation.java
parentf7cfa85f7dc2bb29affefff9374f3a4029b8a057 (diff)
downloadandroid_packages_apps_Gallery2-19b307f5ef03b63493bd29e8e838a22c323a370a.tar.gz
android_packages_apps_Gallery2-19b307f5ef03b63493bd29e8e838a22c323a370a.tar.bz2
android_packages_apps_Gallery2-19b307f5ef03b63493bd29e8e838a22c323a370a.zip
Pass the ImagePreset to ImageFilter
Change-Id: I4c195a5eb6055c3bb43fed60e76751ed133ab725
Diffstat (limited to 'src/com/android/gallery3d/filtershow/filters/FilterRepresentation.java')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/FilterRepresentation.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/FilterRepresentation.java b/src/com/android/gallery3d/filtershow/filters/FilterRepresentation.java
index 0aa449303..8ac191de7 100644
--- a/src/com/android/gallery3d/filtershow/filters/FilterRepresentation.java
+++ b/src/com/android/gallery3d/filtershow/filters/FilterRepresentation.java
@@ -24,7 +24,6 @@ public class FilterRepresentation implements Cloneable {
private static final String LOGTAG = "FilterRepresentation";
private String mName;
private int mPriority = TYPE_NORMAL;
- private ImagePreset mPreset;
private Class mFilterClass;
private int mTextId = 0;
private int mEditorId = BasicEditor.ID;
@@ -101,10 +100,6 @@ public class FilterRepresentation implements Cloneable {
return mPriority;
}
- public void setImagePreset(ImagePreset preset) {
- mPreset = preset;
- }
-
public boolean isNil() {
return false;
}