Skip to content

Commit

Permalink
Remove unused setting
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersantos committed Jul 2, 2015
1 parent 96b77fe commit 0f147f8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,6 @@ public void setRootStatus(int rootStatus) {
editor.commit();
}

public Boolean getStartDeletePref() {
return sharedPreferences.getBoolean(KeyStartDelete, false);
}
public void setStartDeletePref(Boolean res) {
editor.putBoolean(KeyStartDelete, res);
editor.commit();
}

public int getPrimaryColorPref() {
return sharedPreferences.getInt(KeyPrimaryColor, context.getResources().getColor(R.color.primary));
}
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@
<string name="button_undo">Undo</string>

<!-- Settings -->
<string name="settings_delete_on_start">Delete APKs</string>
<string name="settings_delete_on_start_description">Remove all the extracted APKs on every app starts</string>
<string name="settings_delete_all">Delete all extracted APKs</string>
<string name="settings_delete_all_description">Remove all the extracted APKs stored in the extraction folder</string>
<string name="settings_custom_filename">Default filename for extracted APKs</string>
Expand Down
5 changes: 0 additions & 5 deletions app/src/main/res/xml/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@
android:orientation="vertical">
<PreferenceCategory
android:title="@string/action_settings">
<CheckBoxPreference
android:key="prefStartDelete"
android:title="@string/settings_delete_on_start"
android:summary="@string/settings_delete_on_start_description"
android:defaultValue="false" />
<Preference
android:key="prefDeleteAll"
android:title="@string/settings_delete_all"
Expand Down

0 comments on commit 0f147f8

Please sign in to comment.