diff options
author | 2013-08-20 21:15:52 +0900 | |
---|---|---|
committer | 2013-08-21 18:54:34 +0900 | |
commit | a306e087536ea82c97deb4a022730e2cdf5d2c35 (patch) | |
tree | fa7aca811a8a6714dc9a7432cfea196354cbf840 /tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java | |
parent | 107a5f6fb81a91a98fecd4c291aabb421e963291 (diff) | |
download | latinime-a306e087536ea82c97deb4a022730e2cdf5d2c35.tar.gz latinime-a306e087536ea82c97deb4a022730e2cdf5d2c35.tar.xz latinime-a306e087536ea82c97deb4a022730e2cdf5d2c35.zip |
Rename BinaryDictEncoder to BinaryDictEncoderUtils.
Change-Id: I4dabf17da7003b1d8204a83dbd10e5be6e8fd805
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java index e43a59f42..d50d1ac96 100644 --- a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java +++ b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java @@ -44,7 +44,7 @@ import java.util.Random; import java.util.Set; /** - * Unit tests for BinaryDictDecoderUtils and BinaryDictEncoder. + * Unit tests for BinaryDictDecoderUtils and BinaryDictEncoderUtils. */ @LargeTest public class BinaryDictDecoderEncoderTests extends AndroidTestCase { @@ -210,7 +210,7 @@ public class BinaryDictDecoderEncoderTests extends AndroidTestCase { // If you need to dump the dict to a textual file, uncomment the line below and the // function above // dumpToCombinedFileForDebug(file, "/tmp/foo"); - BinaryDictEncoder.writeDictionaryBinary(out, dict, formatOptions); + BinaryDictEncoderUtils.writeDictionaryBinary(out, dict, formatOptions); diff = System.currentTimeMillis() - now; out.flush(); |