aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java
diff options
context:
space:
mode:
authorAdrian Velicu <adrianv@google.com>2014-10-30 16:04:04 +0900
committerAdrian Velicu <adrianv@google.com>2014-10-31 14:50:18 +0900
commit88480f39f6f5d1d678983d1e828bfe7196b021c4 (patch)
treea5a62962ca9c310505fcb03278b61aec76a2cbd5 /java/src/com/android/inputmethod/latin/makedict/FormatSpec.java
parent8dd31a28ae774c0f5cd43404ad4b78bf46e5aeb6 (diff)
downloadlatinime-88480f39f6f5d1d678983d1e828bfe7196b021c4.tar.gz
latinime-88480f39f6f5d1d678983d1e828bfe7196b021c4.tar.xz
latinime-88480f39f6f5d1d678983d1e828bfe7196b021c4.zip
Update unit tests for new static dict version.
Bug: 11031090 Change-Id: Ifd7b241f1a0a30678ca7de97cc6e96927a9b5c8f
Diffstat (limited to 'java/src/com/android/inputmethod/latin/makedict/FormatSpec.java')
-rw-r--r--java/src/com/android/inputmethod/latin/makedict/FormatSpec.java6
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.