From 8e3a1d0f89ac5a0c7d31effb8cbb447f93f70310 Mon Sep 17 00:00:00 2001 From: Keisuke Kuroyanagi Date: Fri, 14 Feb 2014 18:31:41 +0900 Subject: Remove unused argument from readDictionaryBinary. Bug: 12810574 Change-Id: Ice415ebd8d11162facca3fe8927ef8a616b11424 --- .../inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java') diff --git a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java index 86f245810..4fb06364f 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); -- cgit v1.2.3-83-g751a