diff options
author | 2013-12-13 18:53:41 +0900 | |
---|---|---|
committer | 2013-12-13 18:53:41 +0900 | |
commit | 1dc7eca1144a30b2cf6ccf9c8337c6cb729bc1b7 (patch) | |
tree | 2615ccf6765608ea92a415bdf93f4676de06b68a /tests/src/com/android/inputmethod/latin/makedict/BinaryDictUtils.java | |
parent | a245d15da5d295af21ead9a01583c64796a31ad7 (diff) | |
download | latinime-1dc7eca1144a30b2cf6ccf9c8337c6cb729bc1b7.tar.gz latinime-1dc7eca1144a30b2cf6ccf9c8337c6cb729bc1b7.tar.xz latinime-1dc7eca1144a30b2cf6ccf9c8337c6cb729bc1b7.zip |
Remove references to the v3 dictionary.
Change-Id: I811c8c923ad67a6d9bfdd11bdef8991eb7135c27
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/makedict/BinaryDictUtils.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/makedict/BinaryDictUtils.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictUtils.java b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictUtils.java index 208cb99b5..a568704b4 100644 --- a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictUtils.java +++ b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictUtils.java @@ -76,8 +76,6 @@ public class BinaryDictUtils { throws UnsupportedFormatException { if (formatOptions.mVersion == FormatSpec.VERSION4) { return new Ver4DictUpdater(file, DictDecoder.USE_WRITABLE_BYTEBUFFER); - } else if (formatOptions.mVersion == FormatSpec.VERSION3) { - return new Ver2DictUpdater(file, DictDecoder.USE_WRITABLE_BYTEBUFFER); } else { throw new UnsupportedFormatException("The format option has a wrong version : " + formatOptions.mVersion); |