diff options
author | 2013-08-20 01:39:03 -0700 | |
---|---|---|
committer | 2013-08-20 01:39:03 -0700 | |
commit | ad531fd2650b92461acd13e6ee776c13529885d5 (patch) | |
tree | 5a5a6aa33397319fc1df03fd8c0bbf78394103cf /java/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderUtils.java | |
parent | 19c0b5b27633704377b777571b33562db17b9fca (diff) | |
parent | 112257e40f6f6d914fac1c3a45f39a770693b386 (diff) | |
download | latinime-ad531fd2650b92461acd13e6ee776c13529885d5.tar.gz latinime-ad531fd2650b92461acd13e6ee776c13529885d5.tar.xz latinime-ad531fd2650b92461acd13e6ee776c13529885d5.zip |
am 112257e4: Rename BinaryDictDecoder to Ver3DictDecoder.
* commit '112257e40f6f6d914fac1c3a45f39a770693b386':
Rename BinaryDictDecoder to Ver3DictDecoder.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderUtils.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderUtils.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderUtils.java b/java/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderUtils.java index d1974c8d4..995f061f3 100644 --- a/java/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderUtils.java +++ b/java/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderUtils.java @@ -40,7 +40,7 @@ import java.util.TreeMap; * * All the methods in this class are static. * - * TODO: Remove calls from classes except BinaryDictDecoder + * TODO: Remove calls from classes except Ver3DictDecoder * TODO: Move this file to makedict/internal. */ public final class BinaryDictDecoderUtils { @@ -649,13 +649,13 @@ public final class BinaryDictDecoderUtils { * @return the created (or merged) dictionary. */ @UsedForTesting - public static FusionDictionary readDictionaryBinary(final BinaryDictDecoder dictDecoder, + public static FusionDictionary readDictionaryBinary(final Ver3DictDecoder dictDecoder, final FusionDictionary dict) throws FileNotFoundException, IOException, UnsupportedFormatException { // if the buffer has not been opened, open the buffer with bytebuffer. if (dictDecoder.getDictBuffer() == null) dictDecoder.openDictBuffer( - new BinaryDictDecoder.DictionaryBufferFromReadOnlyByteBufferFactory()); + new Ver3DictDecoder.DictionaryBufferFromReadOnlyByteBufferFactory()); if (dictDecoder.getDictBuffer() == null) { MakedictLog.e("Cannot open the buffer"); } |