From 1dc7eca1144a30b2cf6ccf9c8337c6cb729bc1b7 Mon Sep 17 00:00:00 2001 From: Jean Chalard Date: Fri, 13 Dec 2013 18:53:41 +0900 Subject: Remove references to the v3 dictionary. Change-Id: I811c8c923ad67a6d9bfdd11bdef8991eb7135c27 --- tests/src/com/android/inputmethod/latin/makedict/BinaryDictUtils.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests/src') 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); -- cgit v1.2.3-83-g751a