aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
diff options
context:
space:
mode:
authorKeisuke Kuroyanagi <ksk@google.com>2014-02-14 10:37:55 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-02-14 10:37:56 +0000
commit85fe06e759ab89c629caab5fb73de7ff0441d060 (patch)
tree36d7fd0ced83ccb8270586e8408987fbbcd7fc05 /tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
parent36d606fcbc666c331ffaba02fe6b55afa4509348 (diff)
parent8e3a1d0f89ac5a0c7d31effb8cbb447f93f70310 (diff)
downloadlatinime-85fe06e759ab89c629caab5fb73de7ff0441d060.tar.gz
latinime-85fe06e759ab89c629caab5fb73de7ff0441d060.tar.xz
latinime-85fe06e759ab89c629caab5fb73de7ff0441d060.zip
Merge "Remove unused argument from readDictionaryBinary."
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java')
-rw-r--r--tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
index 28388b4a0..f948d949d 100644
--- a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
+++ b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
@@ -252,7 +252,7 @@ public class BinaryDictDecoderEncoderTests extends AndroidTestCase {
try {
final DictDecoder dictDecoder = FormatSpec.getDictDecoder(file, bufferType);
now = System.currentTimeMillis();
- dict = dictDecoder.readDictionaryBinary(null, false /* deleteDictIfBroken */);
+ dict = dictDecoder.readDictionaryBinary(false /* deleteDictIfBroken */);
diff = System.currentTimeMillis() - now;
} catch (IOException e) {
Log.e(TAG, "IOException while reading dictionary", e);