diff options
author | 2012-12-17 00:52:39 -0800 | |
---|---|---|
committer | 2012-12-17 00:52:39 -0800 | |
commit | 56369304399d27b7871041c0ea0a8e7afb996b10 (patch) | |
tree | 7f0ef29a2fca199dd2cc15747d89832923c2dabe /java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java | |
parent | 68fd58c3c1a84ada316b0b87e6fc276341c62965 (diff) | |
parent | 96b22200beb98fd1a6288f4cf53e38611a09cdd0 (diff) | |
download | latinime-56369304399d27b7871041c0ea0a8e7afb996b10.tar.gz latinime-56369304399d27b7871041c0ea0a8e7afb996b10.tar.xz latinime-56369304399d27b7871041c0ea0a8e7afb996b10.zip |
am 96b22200: Privatize a few constants in BinaryDictionary.java
* commit '96b22200beb98fd1a6288f4cf53e38611a09cdd0':
Privatize a few constants in BinaryDictionary.java
Diffstat (limited to '')
-rw-r--r-- | java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java b/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java index 159867ade..47adaa8ed 100644 --- a/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java +++ b/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java @@ -51,10 +51,9 @@ abstract public class ExpandableBinaryDictionary extends Dictionary { private static boolean DEBUG = false; /** - * The maximum length of a word in this dictionary. This is the same value as the binary - * dictionary. + * The maximum length of a word in this dictionary. */ - protected static final int MAX_WORD_LENGTH = BinaryDictionary.MAX_WORD_LENGTH; + protected static final int MAX_WORD_LENGTH = Constants.Dictionary.MAX_WORD_LENGTH; /** * A static map of locks, each of which controls access to a single binary dictionary file. They |