diff options
author | 2013-12-10 23:08:29 +0900 | |
---|---|---|
committer | 2013-12-13 18:15:05 +0900 | |
commit | 7b55cd3e2b4966150fa4c44dd43ebfeb77058a43 (patch) | |
tree | 1a5e2dbcc86543e4cd661763e6a057aff9b4da03 /tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java | |
parent | 2fa3693c264a4c150ac307d9bb7f6f8f18cc4ffc (diff) | |
download | latinime-7b55cd3e2b4966150fa4c44dd43ebfeb77058a43.tar.gz latinime-7b55cd3e2b4966150fa4c44dd43ebfeb77058a43.tar.xz latinime-7b55cd3e2b4966150fa4c44dd43ebfeb77058a43.zip |
Remove flags from Java side.
This simplifies the code quite a bit.
- GERMAN_UMLAUTS are now handled through a key-value attribute.
The dictionary generator does not need to know about it any more.
- FRENCH_LIGATURES are deprecated as we handle them with shortcuts now.
- CONTAINS_BIGRAMS is deprecated. Bigram processing is always applied
regardless of this flag.
Bug: 11281748
Change-Id: If567e52e245a9342adc7f3104a0f7d8d782df8c1
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java b/tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java index cfc4c762a..a26c25886 100644 --- a/tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java +++ b/tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java @@ -69,8 +69,6 @@ public class BinaryDictionaryTests extends AndroidTestCase { file.delete(); file.mkdir(); Map<String, String> attributeMap = new HashMap<String, String>(); - attributeMap.put(FormatSpec.FileHeader.SUPPORTS_DYNAMIC_UPDATE_ATTRIBUTE, - FormatSpec.FileHeader.ATTRIBUTE_VALUE_TRUE); if (BinaryDictionary.createEmptyDictFile(file.getAbsolutePath(), FormatSpec.VERSION4, attributeMap)) { return file; |