diff options
| author | Keisuke Kuroyanagi <ksk@google.com> | 2014-05-14 13:42:23 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-14 13:42:24 +0000 |
| commit | aa7329de15dddcd437997c9da82d5cfb5a52cdcc (patch) | |
| tree | 0d17c571632ef920d8c5218720b20d62d8227a33 /java | |
| parent | 91d753822527649372a67c8f4e166670791a63f3 (diff) | |
| parent | 04536f14b02566ead3a95fc7d80d47e8d99936ed (diff) | |
Merge "Add VERSION4_DEV(402) in Java side and use it for tests."
Diffstat (limited to 'java')
| -rw-r--r-- | java/src/com/android/inputmethod/latin/makedict/FormatSpec.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java index 613ff2ba4..f5f072b7a 100644 --- a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java +++ b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java @@ -193,8 +193,9 @@ public final class FormatSpec { // Dictionary version used for testing. public static final int VERSION4_ONLY_FOR_TESTING = 399; public static final int VERSION4 = 401; + public static final int VERSION4_DEV = 402; static final int MINIMUM_SUPPORTED_VERSION = VERSION2; - static final int MAXIMUM_SUPPORTED_VERSION = VERSION4; + static final int MAXIMUM_SUPPORTED_VERSION = VERSION4_DEV; // TODO: Make this value adaptative to content data, store it in the header, and // use it in the reading code. |
