1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00

Fix settings versioning after merging autofitWidth branch.

Versioning on master was updated subsequent to the creation
of the branch.
This commit is contained in:
Joe Steele 2013-05-08 23:10:01 -04:00
parent cc62e533ec
commit acfc3e0f63
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -35,7 +35,7 @@ public class Settings {
*
* @see SettingsExporter
*/
public static final int VERSION = 27;
public static final int VERSION = 28;
public static Map<String, Object> validate(int version, Map<String,
TreeMap<Integer, SettingsDescription>> settings,