auto-sync

This commit is contained in:
rusEfi 2015-04-13 14:04:23 -05:00
parent b7203cedcc
commit 09ed048a13
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* @see com.rusefi.StartupFrame * @see com.rusefi.StartupFrame
*/ */
public class Launcher { public class Launcher {
public static final int CONSOLE_VERSION = 20150408; public static final int CONSOLE_VERSION = 20150413;
public static final boolean SHOW_STIMULATOR = false; public static final boolean SHOW_STIMULATOR = false;
private static final String TAB_INDEX = "main_tab"; private static final String TAB_INDEX = "main_tab";
protected static final String PORT_KEY = "port"; protected static final String PORT_KEY = "port";

View File

@ -25,7 +25,7 @@ public class PersistentConfiguration {
config = (Map<String, Object>) e.readObject(); config = (Map<String, Object>) e.readObject();
e.close(); e.close();
} catch (Throwable e) { } catch (Throwable e) {
FileLog.MAIN.logLine("Error reading from " + CONFIG_FILE_NAME); FileLog.MAIN.logLine("Console configuration not found " + CONFIG_FILE_NAME + ", using defaults");
} }
} }