aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
diff options
context:
space:
mode:
authorYuichiro Hanada <yhanada@google.com>2013-08-21 02:53:24 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-08-21 02:53:24 -0700
commitddc8d9b7f8b1ac2d0e423f3ff0cea3279cca20fe (patch)
tree561448ff50e97adc805cb059c523430b9ee54ef9 /tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
parent1d0e9fc0830a95079adc6bace220f1a0dca38323 (diff)
parent107a5f6fb81a91a98fecd4c291aabb421e963291 (diff)
downloadlatinime-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.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 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;
}