diff options
author | 2015-02-06 22:46:08 +0000 | |
---|---|---|
committer | 2015-02-06 22:46:08 +0000 | |
commit | aadfef6ffaf4fd4249a92252e401cbd98cf79d54 (patch) | |
tree | 2bb9f74bb4f41bd0906dae07ae1ec93d5ea8f316 /common/src | |
parent | d6a8adcb044dd8b73a1c96776a835b411a978b46 (diff) | |
parent | 0f7d881dc72132dfd75c8b4fe61a69fc5cdcd460 (diff) | |
download | latinime-aadfef6ffaf4fd4249a92252e401cbd98cf79d54.tar.gz latinime-aadfef6ffaf4fd4249a92252e401cbd98cf79d54.tar.xz latinime-aadfef6ffaf4fd4249a92252e401cbd98cf79d54.zip |
Merge "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. |