summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAkifumi Yoshimoto <akifumi@google.com>2014-09-10 18:33:24 +0900
committerAkifumi Yoshimoto <akifumi@google.com>2014-10-02 12:27:49 +0900
commit9168ab60cf08385554a7a8255e40698988ee37f6 (patch)
tree8adddd41e28e7a854795b4c0727c58ec23a212c1 /tools
parent0c2cdcc7350e8dc0e97f0aa4f343984f3cf39f72 (diff)
downloadandroid_packages_inputmethods_LatinIME-9168ab60cf08385554a7a8255e40698988ee37f6.tar.gz
android_packages_inputmethods_LatinIME-9168ab60cf08385554a7a8255e40698988ee37f6.tar.bz2
android_packages_inputmethods_LatinIME-9168ab60cf08385554a7a8255e40698988ee37f6.zip
Include a code point table in the binary dictionary.
Bug:17097992 Change-Id: I677a5eb3a704e4386f6573360e44ca335d81d2df
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;