diff options
author | 2015-02-06 22:52:26 +0000 | |
---|---|---|
committer | 2015-02-06 22:52:26 +0000 | |
commit | 2c36c9944ea4a4752f5c4c83bfa0b7edc22b5400 (patch) | |
tree | 56e8d425bee0ed7164cb4a09ffca077638344cf1 /common/src | |
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 'common/src')
-rw-r--r-- | common/src/com/android/inputmethod/latin/common/Constants.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/common/src/com/android/inputmethod/latin/common/Constants.java b/common/src/com/android/inputmethod/latin/common/Constants.java index 29cdb8ee6..baa859268 100644 --- a/common/src/com/android/inputmethod/latin/common/Constants.java +++ b/common/src/com/android/inputmethod/latin/common/Constants.java @@ -173,15 +173,6 @@ public final class Constants { // right for this. public static final int MAX_CHARACTERS_FOR_RECAPITALIZATION = 1024 * 100; - // Must be equal to MAX_WORD_LENGTH in native/jni/src/defines.h - // TODO: create a overlay and update the value appropriately for the new decoder. - public static final int DICTIONARY_MAX_WORD_LENGTH = 48; - - // (MAX_PREV_WORD_COUNT_FOR_N_GRAM + 1)-gram is supported in Java side. Needs to modify - // MAX_PREV_WORD_COUNT_FOR_N_GRAM in native/jni/src/defines.h for suggestions. - // TODO: create a overlay and update the value appropriately for the new decoder. - public static final int MAX_PREV_WORD_COUNT_FOR_N_GRAM = 3; - // Key events coming any faster than this are long-presses. public static final int LONG_PRESS_MILLISECONDS = 200; // TODO: Set this value appropriately. |