diff options
author | 2012-09-13 00:38:43 -0700 | |
---|---|---|
committer | 2012-09-13 00:38:44 -0700 | |
commit | 328755eee2f6e44daa98a54bd0ee9c0f433c58be (patch) | |
tree | 79dc1cd654b69ab2472dc39063ab09cf20cfa606 /java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java | |
parent | 9deb52c9968c0dfc00713b76aff9398173df6f79 (diff) | |
parent | 1a347723c5ad4a71076df67f3af3b702db205719 (diff) | |
download | latinime-328755eee2f6e44daa98a54bd0ee9c0f433c58be.tar.gz latinime-328755eee2f6e44daa98a54bd0ee9c0f433c58be.tar.xz latinime-328755eee2f6e44daa98a54bd0ee9c0f433c58be.zip |
Merge "Move FormatOptions and FileHeader to FormatSpec." into jb-mr1-dev
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 |