Settings: remove unuseful initialization

This commit is contained in:
Andrea Torlaschi
2016-05-17 17:09:03 +02:00
parent a2d2da9098
commit 2ab55b6767
3 changed files with 1 additions and 20 deletions

View File

@@ -107,12 +107,6 @@ public class Preferences {
return mSharedPreferences.getBoolean(Pref.PASSPHRASE_CACHE_SUBS, false);
}
public void setPassphraseCacheSubs(boolean value) {
SharedPreferences.Editor editor = mSharedPreferences.edit();
editor.putBoolean(Pref.PASSPHRASE_CACHE_SUBS, value);
editor.commit();
}
public boolean getCachedConsolidate() {
return mSharedPreferences.getBoolean(Pref.CACHED_CONSOLIDATE, false);
}