From 6df5c0026830756e4124dfded00ef8c21e1aa509 Mon Sep 17 00:00:00 2001 From: Chumva Date: Fri, 6 Dec 2019 11:03:16 +0200 Subject: [PATCH] Remove getProfileDefaultValue from global plugins prefs --- .../src/net/osmand/plus/OsmandSettings.java | 31 ++----------------- 1 file changed, 3 insertions(+), 28 deletions(-) diff --git a/OsmAnd/src/net/osmand/plus/OsmandSettings.java b/OsmAnd/src/net/osmand/plus/OsmandSettings.java index cdc271044e..53f33b7afe 100644 --- a/OsmAnd/src/net/osmand/plus/OsmandSettings.java +++ b/OsmAnd/src/net/osmand/plus/OsmandSettings.java @@ -1005,17 +1005,7 @@ public class OsmandSettings { public static final String NUMBER_OF_FREE_DOWNLOADS_ID = "free_downloads_v3"; // this value string is synchronized with settings_pref.xml preference name - private final OsmandPreference PLUGINS = new StringPreference("enabled_plugins", MapillaryPlugin.ID) { - @Override - public String getProfileDefaultValue(ApplicationMode mode) { - ApplicationMode parent = mode.getParent(); - if (parent != null && isSetForMode(parent)) { - return getModeValue(parent); - } else { - return super.getProfileDefaultValue(mode); - } - } - }.makeGlobal(); + private final OsmandPreference PLUGINS = new StringPreference("enabled_plugins", MapillaryPlugin.ID).makeGlobal(); public Set getEnabledPlugins() { String plugs = PLUGINS.get(); @@ -1148,17 +1138,7 @@ public class OsmandSettings { public final CommonPreference SHOW_OSMAND_WELCOME_SCREEN = new BooleanPreference("show_osmand_welcome_screen", true).makeGlobal(); public final CommonPreference API_NAV_DRAWER_ITEMS_JSON = new StringPreference("api_nav_drawer_items_json", "{}").makeGlobal(); - public final CommonPreference API_CONNECTED_APPS_JSON = new StringPreference("api_connected_apps_json", "[]") { - @Override - public String getProfileDefaultValue(ApplicationMode mode) { - ApplicationMode parent = mode.getParent(); - if (parent != null && isSetForMode(parent)) { - return getModeValue(parent); - } else { - return super.getProfileDefaultValue(mode); - } - } - }.makeGlobal(); + public final CommonPreference API_CONNECTED_APPS_JSON = new StringPreference("api_connected_apps_json", "[]").makeGlobal(); public final CommonPreference NUMBER_OF_STARTS_FIRST_XMAS_SHOWN = new IntPreference("number_of_starts_first_xmas_shown", 0).makeGlobal(); @@ -1321,12 +1301,7 @@ public class OsmandSettings { //public final OsmandPreference COORDINATES_FORMAT = new IntPreference("coordinates_format", PointDescription.FORMAT_DEGREES).makeGlobal(); public final OsmandPreference ANGULAR_UNITS = new EnumIntPreference( - "angular_measurement", AngularConstants.DEGREES, AngularConstants.values()) { - @Override - protected AngularConstants getValue(Object prefs, AngularConstants defaultValue) { - return super.getValue(prefs, defaultValue); - } - }.makeProfile().makeGeneral(); + "angular_measurement", AngularConstants.DEGREES, AngularConstants.values()).makeProfile().makeGeneral(); public final OsmandPreference SPEED_SYSTEM = new EnumIntPreference(