diff options
author | 2013-08-20 17:01:47 +0900 | |
---|---|---|
committer | 2013-08-21 18:43:18 +0900 | |
commit | 107a5f6fb81a91a98fecd4c291aabb421e963291 (patch) | |
tree | ba2a5917b5cd50f4eb6526669bce9c75d36bbea3 /tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java | |
parent | f2773ba76b2c01f388445d085a58fc6b47fe6f4f (diff) | |
download | latinime-107a5f6fb81a91a98fecd4c291aabb421e963291.tar.gz latinime-107a5f6fb81a91a98fecd4c291aabb421e963291.tar.xz latinime-107a5f6fb81a91a98fecd4c291aabb421e963291.zip |
Add PtNodeReader.
Change-Id: Ic918822fc1b3a8a7c39ffbcf7defde2c5bf888db
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; } |