Remove support for v3 sig generation

This commit is contained in:
Dominik Schürmann
2014-08-14 15:24:37 +02:00
parent 37edd0f390
commit e72e47d92e
8 changed files with 13 additions and 122 deletions

View File

@@ -130,16 +130,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 isFirstTime() {
return mSharedPreferences.getBoolean(Constants.Pref.FIRST_TIME, true);
}