diff options
author | 2015-02-06 22:52:26 +0000 | |
---|---|---|
committer | 2015-02-06 22:52:26 +0000 | |
commit | 2c36c9944ea4a4752f5c4c83bfa0b7edc22b5400 (patch) | |
tree | 56e8d425bee0ed7164cb4a09ffca077638344cf1 /java/src/com/android/inputmethod/latin/WordComposer.java | |
parent | 3237983b371fc0f11118a888de4018d1e4984a30 (diff) | |
parent | aadfef6ffaf4fd4249a92252e401cbd98cf79d54 (diff) | |
download | latinime-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/WordComposer.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/WordComposer.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/WordComposer.java b/java/src/com/android/inputmethod/latin/WordComposer.java index e6f2f1ec9..32ef1021d 100644 --- a/java/src/com/android/inputmethod/latin/WordComposer.java +++ b/java/src/com/android/inputmethod/latin/WordComposer.java @@ -26,6 +26,7 @@ import com.android.inputmethod.latin.common.CoordinateUtils; import com.android.inputmethod.latin.common.InputPointers; import com.android.inputmethod.latin.common.StringUtils; import com.android.inputmethod.latin.define.DebugFlags; +import com.android.inputmethod.latin.define.DecoderSpecificConstants; import java.util.ArrayList; import java.util.Collections; @@ -36,7 +37,7 @@ import javax.annotation.Nonnull; * A place to store the currently composing word with information such as adjacent key codes as well */ public final class WordComposer { - private static final int MAX_WORD_LENGTH = Constants.DICTIONARY_MAX_WORD_LENGTH; + private static final int MAX_WORD_LENGTH = DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH; private static final boolean DBG = DebugFlags.DEBUG_ENABLED; public static final int CAPS_MODE_OFF = 0; |