Remove support for V3 signatures

This commit is contained in:
Dominik Schürmann
2014-07-22 18:24:12 +02:00
parent e4e8bc5e07
commit bf10eb91b7
9 changed files with 17 additions and 162 deletions

View File

@@ -129,16 +129,6 @@ public class Preferences {
editor.commit();
}
public boolean getForceV3Signatures() {
return mSharedPreferences.getBoolean(Constants.Pref.FORCE_V3_SIGNATURES, false);
}
public void setForceV3Signatures(boolean value) {
SharedPreferences.Editor editor = mSharedPreferences.edit();
editor.putBoolean(Constants.Pref.FORCE_V3_SIGNATURES, value);
editor.commit();
}
public boolean getFirstTime() {
return mSharedPreferences.getBoolean(Constants.Pref.FIRST_TIME, true);
}