aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java
diff options
context:
space:
mode:
authorMohammadinamul Sheik <inamul@google.com>2015-02-06 22:52:26 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-06 22:52:26 +0000
commit2c36c9944ea4a4752f5c4c83bfa0b7edc22b5400 (patch)
tree56e8d425bee0ed7164cb4a09ffca077638344cf1 /java/src/com/android/inputmethod/latin/makedict/FormatSpec.java
parent3237983b371fc0f11118a888de4018d1e4984a30 (diff)
parentaadfef6ffaf4fd4249a92252e401cbd98cf79d54 (diff)
downloadlatinime-2c36c9944ea4a4752f5c4c83bfa0b7edc22b5400.tar.gz
latinime-2c36c9944ea4a4752f5c4c83bfa0b7edc22b5400.tar.xz
latinime-2c36c9944ea4a4752f5c4c83bfa0b7edc22b5400.zip
am aadfef6f: Merge "Move decoder specific constants to DecoderSpecificConstants.java"
* commit 'aadfef6ffaf4fd4249a92252e401cbd98cf79d54': Move decoder specific constants to DecoderSpecificConstants.java
Diffstat (limited to 'java/src/com/android/inputmethod/latin/makedict/FormatSpec.java')
-rw-r--r--java/src/com/android/inputmethod/latin/makedict/FormatSpec.java4
1 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 eba9654a5..3348a3767 100644
--- a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java
+++ b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java
@@ -17,7 +17,7 @@
package com.android.inputmethod.latin.makedict;
import com.android.inputmethod.annotations.UsedForTesting;
-import com.android.inputmethod.latin.common.Constants;
+import com.android.inputmethod.latin.define.DecoderSpecificConstants;
import java.util.Date;
import java.util.HashMap;
@@ -186,7 +186,7 @@ public final class FormatSpec {
// TODO: Make this value adaptative to content data, store it in the header, and
// use it in the reading code.
- static final int MAX_WORD_LENGTH = Constants.DICTIONARY_MAX_WORD_LENGTH;
+ static final int MAX_WORD_LENGTH = DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH;
// These flags are used only in the static dictionary.
static final int MASK_CHILDREN_ADDRESS_TYPE = 0xC0;