diff options
author | 2015-02-13 07:19:55 +0000 | |
---|---|---|
committer | 2015-02-13 07:19:55 +0000 | |
commit | baefd1c87ec46bccda76cdafc4b8b9eb534a5fd8 (patch) | |
tree | cc597fba876290c30e72eda00fbea2bcc1d027f4 /java-overridable/src/com/android/inputmethod/latin | |
parent | 920b3fd32a2d337408df8747dd84228ab0c83a70 (diff) | |
parent | 95711bfcee07d848883316cf07439408f5b332a1 (diff) | |
download | latinime-baefd1c87ec46bccda76cdafc4b8b9eb534a5fd8.tar.gz latinime-baefd1c87ec46bccda76cdafc4b8b9eb534a5fd8.tar.xz latinime-baefd1c87ec46bccda76cdafc4b8b9eb534a5fd8.zip |
am 95711bfc: Add Decoder specific dictionary suffix to resource lookup
* commit '95711bfcee07d848883316cf07439408f5b332a1':
Add Decoder specific dictionary suffix to resource lookup
Diffstat (limited to 'java-overridable/src/com/android/inputmethod/latin')
-rw-r--r-- | java-overridable/src/com/android/inputmethod/latin/define/DecoderSpecificConstants.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java-overridable/src/com/android/inputmethod/latin/define/DecoderSpecificConstants.java b/java-overridable/src/com/android/inputmethod/latin/define/DecoderSpecificConstants.java index eb4a3eb59..4789e208d 100644 --- a/java-overridable/src/com/android/inputmethod/latin/define/DecoderSpecificConstants.java +++ b/java-overridable/src/com/android/inputmethod/latin/define/DecoderSpecificConstants.java @@ -27,4 +27,7 @@ public class DecoderSpecificConstants { // (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. public static final int MAX_PREV_WORD_COUNT_FOR_N_GRAM = 3; + + public static final String DECODER_DICT_SUFFIX = ""; + } |