diff options
author | 2013-08-21 02:53:24 -0700 | |
---|---|---|
committer | 2013-08-21 02:53:24 -0700 | |
commit | ddc8d9b7f8b1ac2d0e423f3ff0cea3279cca20fe (patch) | |
tree | 561448ff50e97adc805cb059c523430b9ee54ef9 /tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java | |
parent | 1d0e9fc0830a95079adc6bace220f1a0dca38323 (diff) | |
parent | 107a5f6fb81a91a98fecd4c291aabb421e963291 (diff) | |
download | latinime-ddc8d9b7f8b1ac2d0e423f3ff0cea3279cca20fe.tar.gz latinime-ddc8d9b7f8b1ac2d0e423f3ff0cea3279cca20fe.tar.xz latinime-ddc8d9b7f8b1ac2d0e423f3ff0cea3279cca20fe.zip |
am 107a5f6f: Add PtNodeReader.
* commit '107a5f6fb81a91a98fecd4c291aabb421e963291':
Add PtNodeReader.
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java | 2 |
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 f3ca2b147..e43a59f42 100644 --- a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java +++ b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java @@ -512,7 +512,7 @@ public class BinaryDictDecoderEncoderTests extends AndroidTestCase { return null; } if (fileHeader == null) return null; - return BinaryDictDecoderUtils.getWordAtAddress(dictBuffer, fileHeader.mHeaderSize, + return BinaryDictDecoderUtils.getWordAtAddress(dictDecoder, fileHeader.mHeaderSize, address - fileHeader.mHeaderSize, fileHeader.mFormatOptions).mWord; } |