Browse Source

Merge pull request #3733 from nextcloud/remove-dead-code-from-preference-manager

Remove dead code from preference manager
Andy Scherzinger 6 years ago
parent
commit
02e98f25a5

+ 0 - 73
src/main/java/com/nextcloud/client/preferences/PreferenceManager.java

@@ -50,11 +50,6 @@ public final class PreferenceManager implements AppPreferences {
     public static final String AUTO_PREF__LAST_SEEN_VERSION_CODE = "lastSeenVersionCode";
     private static final String PREF__INSTANT_UPLOADING = "instant_uploading";
     private static final String PREF__INSTANT_VIDEO_UPLOADING = "instant_video_uploading";
-    private static final String PREF__INSTANT_UPLOAD_PATH_USE_SUBFOLDERS = "instant_upload_path_use_subfolders";
-    private static final String PREF__INSTANT_UPLOAD_ON_WIFI = "instant_upload_on_wifi";
-    private static final String PREF__INSTANT_VIDEO_UPLOAD_ON_WIFI = "instant_video_upload_on_wifi";
-    private static final String PREF__INSTANT_VIDEO_UPLOAD_PATH_USE_SUBFOLDERS
-            = "instant_video_upload_path_use_subfolders";
     private static final String PREF__LEGACY_CLEAN = "legacyClean";
     public static final String PREF__KEYS_MIGRATION = "keysMigration";
     private static final String PREF__FIX_STORAGE_PATH = "storagePathFix";
@@ -108,31 +103,6 @@ public final class PreferenceManager implements AppPreferences {
         return preferences.getBoolean(PREF__INSTANT_VIDEO_UPLOADING, false);
     }
 
-    public static boolean instantPictureUploadPathUseSubfolders(Context context) {
-        return getDefaultSharedPreferences(context).getBoolean(PREF__INSTANT_UPLOAD_PATH_USE_SUBFOLDERS, false);
-    }
-
-    public static boolean instantPictureUploadViaWiFiOnly(Context context) {
-        return getDefaultSharedPreferences(context).getBoolean(PREF__INSTANT_UPLOAD_ON_WIFI, false);
-    }
-
-    public static boolean instantVideoUploadPathUseSubfolders(Context context) {
-        return getDefaultSharedPreferences(context).getBoolean(PREF__INSTANT_VIDEO_UPLOAD_PATH_USE_SUBFOLDERS, false);
-    }
-
-    public static boolean instantVideoUploadViaWiFiOnly(Context context) {
-        return getDefaultSharedPreferences(context).getBoolean(PREF__INSTANT_VIDEO_UPLOAD_ON_WIFI, false);
-    }
-
-    public static boolean instantPictureUploadWhenChargingOnly(Context context) {
-        return PreferenceManager.getDefaultSharedPreferences(context).getBoolean("instant_upload_on_charging", false);
-    }
-
-    public static boolean instantVideoUploadWhenChargingOnly(Context context) {
-        return PreferenceManager.getDefaultSharedPreferences(context).getBoolean("instant_video_upload_on_charging",
-                false);
-    }
-
     public static boolean showHiddenFilesEnabled(Context context) {
         return PreferenceManager.getDefaultSharedPreferences(context).getBoolean("show_hidden_files_pref", false);
     }
@@ -287,29 +257,6 @@ public final class PreferenceManager implements AppPreferences {
         return value.isEmpty() ? defaultValue : value;
     }
 
-    /**
-     * Get preference value for a view.
-     *
-     * @param context        Context object.
-     * @param preferenceName Name of the preference to lookup.
-     * @param type           view which view
-     * @param defaultValue   Fallback value in case nothing is set.
-     * @return Preference value
-     */
-    public static String getTypePreference(Context context, String preferenceName, String type, String defaultValue) {
-        Account account = AccountUtils.getCurrentOwnCloudAccount(context);
-
-        if (account == null) {
-            return defaultValue;
-        }
-
-        ArbitraryDataProvider dataProvider = new ArbitraryDataProvider(context.getContentResolver());
-
-        String value = dataProvider.getValue(account.name, preferenceName + "_" + type);
-
-        return value.isEmpty() ? defaultValue : value;
-    }
-
     /**
      * Set preference value for a folder.
      *
@@ -470,32 +417,12 @@ public final class PreferenceManager implements AppPreferences {
         appPreferences.putBoolean(key, value).apply();
     }
 
-    private static void saveStringPreference(Context context, String key, String value) {
-        SharedPreferences.Editor appPreferences = getDefaultSharedPreferences(context.getApplicationContext()).edit();
-        appPreferences.putString(key, value).apply();
-    }
-
     private static void saveStringPreferenceNow(Context context, String key, String value) {
         SharedPreferences.Editor appPreferences = getDefaultSharedPreferences(context.getApplicationContext()).edit();
         appPreferences.putString(key, value);
         appPreferences.apply();
     }
 
-    private static void saveIntPreference(Context context, String key, int value) {
-        SharedPreferences.Editor appPreferences = getDefaultSharedPreferences(context.getApplicationContext()).edit();
-        appPreferences.putInt(key, value).apply();
-    }
-
-    private static void saveFloatPreference(Context context, String key, float value) {
-        SharedPreferences.Editor appPreferences = getDefaultSharedPreferences(context.getApplicationContext()).edit();
-        appPreferences.putFloat(key, value).apply();
-    }
-
-    private static void saveLongPreference(Context context, String key, long value) {
-        SharedPreferences.Editor appPreferences = getDefaultSharedPreferences(context.getApplicationContext()).edit();
-        appPreferences.putLong(key, value).apply();
-    }
-
     public static SharedPreferences getDefaultSharedPreferences(Context context) {
         return android.preference.PreferenceManager.getDefaultSharedPreferences(context.getApplicationContext());
     }