Index: java/ProgramSettings/src/net/oni2/SettingsManager.java
===================================================================
--- java/ProgramSettings/src/net/oni2/SettingsManager.java	(revision 776)
+++ java/ProgramSettings/src/net/oni2/SettingsManager.java	(revision 852)
@@ -23,13 +23,12 @@
 	private static SettingsManager instance = new SettingsManager();
 
-	private static boolean debugRun = false;
-	private static boolean useWorkingDir = false;
-
 	private HashMap<String, Object> prefs = new HashMap<String, Object>();
 
 	private boolean printNamesNotInMap = false;
 
-	private boolean offlineMode = false;
-	private boolean noCacheUpdate = false;
+	@SuppressWarnings("unused")
+	private transient boolean offlineMode = false;
+	@SuppressWarnings("unused")
+	private transient boolean noCacheUpdate = false;
 
 	/**
@@ -40,64 +39,4 @@
 	public static SettingsManager getInstance() {
 		return instance;
-	}
-
-	/**
-	 * @param debug
-	 *            Debug mode
-	 */
-	public static void setDebug(boolean debug) {
-		debugRun = debug;
-	}
-
-	/**
-	 * @return Is debug run
-	 */
-	public static boolean isDebug() {
-		return debugRun;
-	}
-
-	/**
-	 * @param useWd
-	 *            Use working directory instead of jar path
-	 */
-	public static void setUseWorkingDir(boolean useWd) {
-		useWorkingDir = useWd;
-	}
-
-	/**
-	 * @return Do we want to use working directory
-	 */
-	public static boolean getUseWorkingDir() {
-		return useWorkingDir;
-	}
-
-	/**
-	 * @return Is offline?
-	 */
-	public boolean isOfflineMode() {
-		return offlineMode;
-	}
-
-	/**
-	 * @param offline
-	 *            Is offline?
-	 */
-	public void setOfflineMode(boolean offline) {
-		this.offlineMode = offline;
-	}
-
-	/**
-	 * @return Is in noCacheUpdate mode?
-	 */
-	public boolean isNoCacheUpdateMode() {
-		return noCacheUpdate;
-	}
-
-	/**
-	 * @param noCacheUpdate
-	 *            Is in noCacheUpdate mode?
-	 */
-	public void setNoCacheUpdateMode(boolean noCacheUpdate) {
-		this.noCacheUpdate = noCacheUpdate;
 	}
 
