diff options
author | 2014-10-21 16:20:19 +0900 | |
---|---|---|
committer | 2014-11-06 13:12:39 +0900 | |
commit | 5564317f837164c67749423fa78f917ed2ae9e14 (patch) | |
tree | cd98c922d235f11902e6d4e90b181611527bc75c /tools/dicttool/tests | |
parent | ab68143ad0fb784db38a3fd65612632fca90c789 (diff) | |
download | latinime-5564317f837164c67749423fa78f917ed2ae9e14.tar.gz latinime-5564317f837164c67749423fa78f917ed2ae9e14.tar.xz latinime-5564317f837164c67749423fa78f917ed2ae9e14.zip |
Genericize getting a raw dictionary
This will allow for not copying the whole dictionary when only
the header is needed.
Change-Id: Ie4a649b507ccd4a430201824ed87b8b8bbf55e9f
Diffstat (limited to 'tools/dicttool/tests')
-rw-r--r-- | tools/dicttool/tests/com/android/inputmethod/latin/dicttool/BinaryDictOffdeviceUtilsTests.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/BinaryDictOffdeviceUtilsTests.java b/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/BinaryDictOffdeviceUtilsTests.java index 757f51a5f..0fb4cf59c 100644 --- a/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/BinaryDictOffdeviceUtilsTests.java +++ b/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/BinaryDictOffdeviceUtilsTests.java @@ -74,11 +74,11 @@ public class BinaryDictOffdeviceUtilsTests extends TestCase { } // Test for an actually compressed dictionary and its contents - final BinaryDictOffdeviceUtils.DecoderChainSpec decodeSpec = + final BinaryDictOffdeviceUtils.DecoderChainSpec<File> decodeSpec = BinaryDictOffdeviceUtils.getRawDictionaryOrNull(dst); assertEquals("Wrong decode spec", "raw > compression", decodeSpec.describeChain()); - final DictDecoder dictDecoder = BinaryDictIOUtils.getDictDecoder(decodeSpec.mFile, 0, - decodeSpec.mFile.length()); + final DictDecoder dictDecoder = BinaryDictIOUtils.getDictDecoder(decodeSpec.mResult, 0, + decodeSpec.mResult.length()); final FusionDictionary resultDict = dictDecoder.readDictionaryBinary(false /* deleteDictIfBroken */); assertEquals("Wrong version attribute", VERSION, resultDict.mOptions.mAttributes.get( |