No bug - Unify android-sync git repo with m-c. r=trivial

This commit is contained in:
Nick Alexander
2014-11-13 15:32:12 -08:00
parent 3ea8825a53
commit 9af6970f83
5 changed files with 5 additions and 8 deletions

View File

@@ -37,7 +37,6 @@ public class SyncConfiguration {
this.editor = config.getEditor();
}
@Override
public void apply() {
// Android <=r8 SharedPreferences.Editor does not contain apply() for overriding.
this.editor.commit();
@@ -86,7 +85,6 @@ public class SyncConfiguration {
// Not marking as Override, because Android <= 10 doesn't have
// putStringSet. Neither can we implement it.
@Override
public Editor putStringSet(String key, Set<String> value) {
throw new RuntimeException("putStringSet not available.");
}
@@ -162,7 +160,6 @@ public class SyncConfiguration {
// Not marking as Override, because Android <= 10 doesn't have
// getStringSet. Neither can we implement it.
@Override
public Set<String> getStringSet(String key, Set<String> defValue) {
throw new RuntimeException("getStringSet not available.");
}