1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Readjust settings version number based on current master

This commit is contained in:
Joe Steele 2012-12-22 23:31:23 -05:00
parent d5a2c6b5c7
commit 9b851f20e3
2 changed files with 2 additions and 2 deletions

View File

@ -198,7 +198,7 @@ public class GlobalSettings {
new V(1, new BooleanSetting(false))
));
s.put("wrapFolderNames", Settings.versions(
new V(21, new BooleanSetting(false))
new V(22, new BooleanSetting(false))
));
s.put("batchButtonsMarkRead", Settings.versions(
new V(8, new BooleanSetting(true))

View File

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