summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAkifumi Yoshimoto <akifumi@google.com>2014-10-02 08:55:18 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-10-02 08:55:18 +0000
commit7e5614520a581afa79a51677e973a9ff6dc29162 (patch)
treec25f5df268181fa1898d5fef1fa3d29cd324d0f7 /tools
parent1a7da2ec49547423d5071a8fd5b45dcd949ec332 (diff)
parent9168ab60cf08385554a7a8255e40698988ee37f6 (diff)
downloadandroid_packages_inputmethods_LatinIME-7e5614520a581afa79a51677e973a9ff6dc29162.tar.gz
android_packages_inputmethods_LatinIME-7e5614520a581afa79a51677e973a9ff6dc29162.tar.bz2
android_packages_inputmethods_LatinIME-7e5614520a581afa79a51677e973a9ff6dc29162.zip
Merge "Include a code point table in the binary dictionary."
Diffstat (limited to 'tools')
-rw-r--r--tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java b/tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java
index 44f9695cf..5dfb7bf11 100644
--- a/tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java
+++ b/tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java
@@ -158,7 +158,7 @@ public class DictionaryMaker {
String outputBinary = null;
String outputXml = null;
String outputCombined = null;
- int outputBinaryFormatVersion = 2; // the default version is 2.
+ int outputBinaryFormatVersion = FormatSpec.VERSION201; // the default version is 201.
// Don't use code point table by default.
int codePointTableMode = Ver2DictEncoder.CODE_POINT_TABLE_OFF;