diff options
author | 2012-09-19 13:53:21 +0900 | |
---|---|---|
committer | 2012-09-19 15:37:37 +0900 | |
commit | 65feee12e5889601e375d92dfdf5f8e8fbb05092 (patch) | |
tree | 3fb5c49f43a39c867840db1e6d872dab43035100 /tests/src | |
parent | c2fdf0dfbf1c43f7ed8fdf3d91576bbf71146ef3 (diff) | |
download | latinime-65feee12e5889601e375d92dfdf5f8e8fbb05092.tar.gz latinime-65feee12e5889601e375d92dfdf5f8e8fbb05092.tar.xz latinime-65feee12e5889601e375d92dfdf5f8e8fbb05092.zip |
Make BinaryDictIOUtils.
Change-Id: I45830235ee738233e8eb2bd91d659705b698f58c
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/makedict/BinaryDictIOTests.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictIOTests.java b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictIOTests.java index a87146ee2..4c2d3f6fe 100644 --- a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictIOTests.java +++ b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictIOTests.java @@ -391,7 +391,7 @@ public class BinaryDictIOTests extends AndroidTestCase { assertNotNull("Can't get buffer.", buffer); try { now = System.currentTimeMillis(); - BinaryDictInputOutput.readUnigramsAndBigramsBinary(buffer, resultWords, resultFreqs, + BinaryDictIOUtils.readUnigramsAndBigramsBinary(buffer, resultWords, resultFreqs, resultBigrams); diff = System.currentTimeMillis() - now; } catch (IOException e) { |