aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMohammadinamul Sheik <inamul@google.com>2015-02-05 13:27:36 -0800
committerMohammadinamul Sheik <inamul@google.com>2015-02-05 13:27:36 -0800
commit0f7d881dc72132dfd75c8b4fe61a69fc5cdcd460 (patch)
tree736c344b8b662983e99f2e71ba4ab65bc8667b60 /common
parent608ef4729c26dca2be48eb72f372a278a03ff26d (diff)
downloadlatinime-0f7d881dc72132dfd75c8b4fe61a69fc5cdcd460.tar.gz
latinime-0f7d881dc72132dfd75c8b4fe61a69fc5cdcd460.tar.xz
latinime-0f7d881dc72132dfd75c8b4fe61a69fc5cdcd460.zip
Move decoder specific constants to DecoderSpecificConstants.java
Change-Id: Ie4d325b3152e1e7e424b8b436e222e194e4d9da0
Diffstat (limited to 'common')
-rw-r--r--common/src/com/android/inputmethod/latin/common/Constants.java9
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.