diff options
author | 2013-12-16 23:02:54 +0900 | |
---|---|---|
committer | 2013-12-16 23:02:54 +0900 | |
commit | b5215d456a0c8502f3810f11364f654ee979c81d (patch) | |
tree | d51625b872c5cda760eaed6a6f1456bfcdd9a0c1 | |
parent | 9b08a9e61168a5cc433f8491e797308118257506 (diff) | |
download | latinime-b5215d456a0c8502f3810f11364f654ee979c81d.tar.gz latinime-b5215d456a0c8502f3810f11364f654ee979c81d.tar.xz latinime-b5215d456a0c8502f3810f11364f654ee979c81d.zip |
Increment version number of ver4 format to 401.
Bug: 11073222
Change-Id: I3878aef02040b1ef73165645fc70ede586289c51
-rw-r--r-- | java/src/com/android/inputmethod/latin/makedict/FormatSpec.java | 2 | ||||
-rw-r--r-- | native/jni/src/suggest/policyimpl/dictionary/utils/format_utils.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java index af54805f7..437fa942b 100644 --- a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java +++ b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java @@ -188,7 +188,7 @@ public final class FormatSpec { // us to change the format during development while having testing devices remove // older files with each upgrade, while still having a readable versioning scheme. public static final int VERSION2 = 2; - public static final int VERSION4 = 400; + public static final int VERSION4 = 401; static final int MINIMUM_SUPPORTED_VERSION = VERSION2; static final int MAXIMUM_SUPPORTED_VERSION = VERSION4; diff --git a/native/jni/src/suggest/policyimpl/dictionary/utils/format_utils.h b/native/jni/src/suggest/policyimpl/dictionary/utils/format_utils.h index eb2227d60..7c6a21dd7 100644 --- a/native/jni/src/suggest/policyimpl/dictionary/utils/format_utils.h +++ b/native/jni/src/suggest/policyimpl/dictionary/utils/format_utils.h @@ -31,7 +31,7 @@ class FormatUtils { enum FORMAT_VERSION { // These MUST have the same values as the relevant constants in FormatSpec.java. VERSION_2 = 2, - VERSION_4 = 400, + VERSION_4 = 401, UNKNOWN_VERSION = -1 }; |