diff options
author | 2014-10-31 06:49:50 +0000 | |
---|---|---|
committer | 2014-10-31 06:49:51 +0000 | |
commit | 61d43e5c941e7a76d614ffbe756137c02a34cdc1 (patch) | |
tree | a64ba53669c10fda6bd93b55083213b34faacc62 /java | |
parent | f59c3b62383711a58366bb77caefb62dced3f116 (diff) | |
parent | 88480f39f6f5d1d678983d1e828bfe7196b021c4 (diff) | |
download | latinime-61d43e5c941e7a76d614ffbe756137c02a34cdc1.tar.gz latinime-61d43e5c941e7a76d614ffbe756137c02a34cdc1.tar.xz latinime-61d43e5c941e7a76d614ffbe756137c02a34cdc1.zip |
Merge "Update unit tests for new static dict version."
Diffstat (limited to 'java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/makedict/FormatSpec.java | 6 |
1 files changed, 4 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 a45003211..5925bdc4e 100644 --- a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java +++ b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java @@ -178,8 +178,10 @@ public final class FormatSpec { public static final int VERSION401 = 401; public static final int VERSION4 = 402; public static final int VERSION4_DEV = 403; - static final int MINIMUM_SUPPORTED_VERSION = VERSION2; - static final int MAXIMUM_SUPPORTED_VERSION = VERSION4_DEV; + static final int MINIMUM_SUPPORTED_STATIC_VERSION = VERSION202; + static final int MAXIMUM_SUPPORTED_STATIC_VERSION = VERSION202; + static final int MINIMUM_SUPPORTED_DYNAMIC_VERSION = VERSION4; + static final int MAXIMUM_SUPPORTED_DYNAMIC_VERSION = VERSION4_DEV; // TODO: Make this value adaptative to content data, store it in the header, and // use it in the reading code. |