diff options
author | 2012-09-13 14:11:06 -0700 | |
---|---|---|
committer | 2012-09-13 14:11:06 -0700 | |
commit | da5ef60c95e70a1b1238ff942e71445926be56d0 (patch) | |
tree | 79dc1cd654b69ab2472dc39063ab09cf20cfa606 /java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java | |
parent | 87045568dad9fe148f39f7017afca2ac92ae6da3 (diff) | |
parent | 63eef1890dfb2cc9dd5f0a59786fde64a8a90904 (diff) | |
download | latinime-da5ef60c95e70a1b1238ff942e71445926be56d0.tar.gz latinime-da5ef60c95e70a1b1238ff942e71445926be56d0.tar.xz latinime-da5ef60c95e70a1b1238ff942e71445926be56d0.zip |
am 63eef189: am 328755ee: Merge "Move FormatOptions and FileHeader to FormatSpec." into jb-mr1-dev
* commit '63eef1890dfb2cc9dd5f0a59786fde64a8a90904':
Move FormatOptions and FileHeader to FormatSpec.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java b/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java index def978e4b..b93c17f11 100644 --- a/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java +++ b/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java @@ -21,6 +21,7 @@ import android.util.Log; import com.android.inputmethod.keyboard.ProximityInfo; import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo; import com.android.inputmethod.latin.makedict.BinaryDictInputOutput; +import com.android.inputmethod.latin.makedict.FormatSpec; import com.android.inputmethod.latin.makedict.FusionDictionary; import com.android.inputmethod.latin.makedict.FusionDictionary.Node; import com.android.inputmethod.latin.makedict.FusionDictionary.WeightedString; @@ -90,8 +91,8 @@ abstract public class ExpandableBinaryDictionary extends Dictionary { private final DictionaryController mLocalDictionaryController = new DictionaryController(); private static final int BINARY_DICT_VERSION = 1; - private static final BinaryDictInputOutput.FormatOptions FORMAT_OPTIONS = - new BinaryDictInputOutput.FormatOptions(BINARY_DICT_VERSION); + private static final FormatSpec.FormatOptions FORMAT_OPTIONS = + new FormatSpec.FormatOptions(BINARY_DICT_VERSION); /** * Abstract method for loading the unigrams and bigrams of a given dictionary in a background |