From acfc3e0f6341aa52e6af05cc797d2459cf7d56c5 Mon Sep 17 00:00:00 2001 From: Joe Steele Date: Wed, 8 May 2013 23:10:01 -0400 Subject: [PATCH] Fix settings versioning after merging autofitWidth branch. Versioning on master was updated subsequent to the creation of the branch. --- src/com/fsck/k9/preferences/GlobalSettings.java | 2 +- src/com/fsck/k9/preferences/Settings.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/fsck/k9/preferences/GlobalSettings.java b/src/com/fsck/k9/preferences/GlobalSettings.java index 490bb7bae..e8ed8a7b1 100644 --- a/src/com/fsck/k9/preferences/GlobalSettings.java +++ b/src/com/fsck/k9/preferences/GlobalSettings.java @@ -223,7 +223,7 @@ public class GlobalSettings { new V(25, new BooleanSetting(true)) )); s.put("autofitWidth", Settings.versions( - new V(27, new BooleanSetting(true)) + new V(28, new BooleanSetting(true)) )); SETTINGS = Collections.unmodifiableMap(s); diff --git a/src/com/fsck/k9/preferences/Settings.java b/src/com/fsck/k9/preferences/Settings.java index e52872f20..52e95bf27 100644 --- a/src/com/fsck/k9/preferences/Settings.java +++ b/src/com/fsck/k9/preferences/Settings.java @@ -35,7 +35,7 @@ public class Settings { * * @see SettingsExporter */ - public static final int VERSION = 27; + public static final int VERSION = 28; public static Map validate(int version, Map> settings,