diff options
author | Chih-Chung Chang <chihchung@google.com> | 2010-06-28 13:19:58 +0800 |
---|---|---|
committer | Chih-Chung Chang <chihchung@google.com> | 2010-06-28 14:29:58 +0800 |
commit | b13acb76f5b86f46dfe07830648ec14524e83d39 (patch) | |
tree | 224a68e250cfd2cc88cdbbf6dbbdb5a2aebe8ea2 /src | |
parent | 450254a7c9b30e4f36429b46895c944458f59962 (diff) | |
download | LegacyCamera-b13acb76f5b86f46dfe07830648ec14524e83d39.zip LegacyCamera-b13acb76f5b86f46dfe07830648ec14524e83d39.tar.gz LegacyCamera-b13acb76f5b86f46dfe07830648ec14524e83d39.tar.bz2 |
Fix build again again.
Change-Id: I5acf4836559f265a24c1b0f26582711e6c6b06e4
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/camera/ComboPreferences.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/com/android/camera/ComboPreferences.java b/src/com/android/camera/ComboPreferences.java index af4a09a..ab96298 100644 --- a/src/com/android/camera/ComboPreferences.java +++ b/src/com/android/camera/ComboPreferences.java @@ -116,11 +116,7 @@ public class ComboPreferences implements SharedPreferences, OnSharedPreferenceCh } } - // The following two methods are not used. - public Editor putStringSet(String key, Set<String> values) { - throw new UnsupportedOperationException(); - } - + // This method is not used. public Set<String> getStringSet(String key, Set<String> defValues) { throw new UnsupportedOperationException(); } @@ -203,6 +199,11 @@ public class ComboPreferences implements SharedPreferences, OnSharedPreferenceCh } return this; } + + // This method is not used. + public Editor putStringSet(String key, Set<String> values) { + throw new UnsupportedOperationException(); + } } // Note the remove() and clear() of the returned Editor may not work as |