From 0f7d881dc72132dfd75c8b4fe61a69fc5cdcd460 Mon Sep 17 00:00:00 2001 From: Mohammadinamul Sheik Date: Thu, 5 Feb 2015 13:27:36 -0800 Subject: Move decoder specific constants to DecoderSpecificConstants.java Change-Id: Ie4d325b3152e1e7e424b8b436e222e194e4d9da0 --- common/src/com/android/inputmethod/latin/common/Constants.java | 9 --------- 1 file changed, 9 deletions(-) (limited to 'common/src') 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. -- cgit v1.2.3-83-g751a