diff options
author | SammysHP <sven@sammyshp.de> | 2012-03-09 12:47:16 +0100 |
---|---|---|
committer | SammysHP <sven@sammyshp.de> | 2012-03-09 12:47:16 +0100 |
commit | 10e4c8380761a9a02cbf1b0b2b7ed949b6327732 (patch) | |
tree | f6f4eac4ae0811037fd5a3c44d5d3308fec49757 /main/src/cgeo/geocaching/Settings.java | |
parent | e6a4214b304f3441f46bf75be85b1f538d3e2d7e (diff) | |
download | cgeo-10e4c8380761a9a02cbf1b0b2b7ed949b6327732.zip cgeo-10e4c8380761a9a02cbf1b0b2b7ed949b6327732.tar.gz cgeo-10e4c8380761a9a02cbf1b0b2b7ed949b6327732.tar.bz2 |
Remove debug code
Diffstat (limited to 'main/src/cgeo/geocaching/Settings.java')
-rw-r--r-- | main/src/cgeo/geocaching/Settings.java | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/main/src/cgeo/geocaching/Settings.java b/main/src/cgeo/geocaching/Settings.java index 40ad96d..7479227 100644 --- a/main/src/cgeo/geocaching/Settings.java +++ b/main/src/cgeo/geocaching/Settings.java @@ -76,7 +76,6 @@ public final class Settings { private static final String KEY_COOKIE_STORE = "cookiestore"; private static final String KEY_OPEN_LAST_DETAILS_PAGE = "opendetailslastpage"; private static final String KEY_LAST_DETAILS_PAGE = "lastdetailspage"; - private static final String KEY_DEBUG_INFORMATIONS = "debuginfos"; private static final String KEY_DEFAULT_NAVIGATION_TOOL = "defaultNavigationTool"; private static final String KEY_DEFAULT_NAVIGATION_TOOL_2 = "defaultNavigationTool2"; private static final String KEY_LIVE_MAP_STRATEGY = "livemapstrategy"; @@ -974,20 +973,6 @@ public final class Settings { }); } - public static boolean isDebugInfos() { - return sharedPrefs.getBoolean(KEY_DEBUG_INFORMATIONS, false); - } - - public static void setDebugInfos(final boolean showDebugInfos) { - editSharedSettings(new PrefRunnable() { - - @Override - public void edit(Editor edit) { - edit.putBoolean(KEY_DEBUG_INFORMATIONS, showDebugInfos); - } - }); - } - public static int getDefaultNavigationTool() { return sharedPrefs.getInt(KEY_DEFAULT_NAVIGATION_TOOL, 0); } |