From b51033a42168b2648080ba259e25626847d0f226 Mon Sep 17 00:00:00 2001 From: FineFindus Date: Sat, 25 May 2024 11:36:17 +0200 Subject: [PATCH] feat: remove unused `loadRemoteAccountFollowers` setting --- .../java/org/joinmastodon/android/GlobalUserPreferences.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/mastodon/src/main/java/org/joinmastodon/android/GlobalUserPreferences.java b/mastodon/src/main/java/org/joinmastodon/android/GlobalUserPreferences.java index 91bc89d0d..4fc76608b 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/GlobalUserPreferences.java +++ b/mastodon/src/main/java/org/joinmastodon/android/GlobalUserPreferences.java @@ -77,7 +77,6 @@ public class GlobalUserPreferences{ public static boolean confirmBeforeReblog; public static boolean replyLineAboveHeader; public static boolean swapBookmarkWithBoostAction; - public static boolean loadRemoteAccountFollowers; public static boolean mentionRebloggerAutomatically; public static boolean showPostsWithoutAlt; public static boolean showMediaPreview; @@ -158,7 +157,6 @@ public class GlobalUserPreferences{ replyLineAboveHeader=prefs.getBoolean("replyLineAboveHeader", true); confirmBeforeReblog=prefs.getBoolean("confirmBeforeReblog", false); swapBookmarkWithBoostAction=prefs.getBoolean("swapBookmarkWithBoostAction", false); - loadRemoteAccountFollowers=prefs.getBoolean("loadRemoteAccountFollowers", true); mentionRebloggerAutomatically=prefs.getBoolean("mentionRebloggerAutomatically", false); showPostsWithoutAlt=prefs.getBoolean("showPostsWithoutAlt", true); showMediaPreview=prefs.getBoolean("showMediaPreview", true); @@ -230,7 +228,6 @@ public class GlobalUserPreferences{ .putBoolean("replyLineAboveHeader", replyLineAboveHeader) .putBoolean("confirmBeforeReblog", confirmBeforeReblog) .putBoolean("swapBookmarkWithBoostAction", swapBookmarkWithBoostAction) - .putBoolean("loadRemoteAccountFollowers", loadRemoteAccountFollowers) .putBoolean("mentionRebloggerAutomatically", mentionRebloggerAutomatically) .putBoolean("showDividers", showDividers) .putBoolean("relocatePublishButton", relocatePublishButton)