aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/makedict/AbstractDictDecoder.java
diff options
context:
space:
mode:
authorYuichiro Hanada <yhanada@google.com>2013-10-10 23:57:54 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-10-10 23:57:54 -0700
commitc068780b9d66348af776893fe3178f9d3630801f (patch)
tree9e04c491996c8323547d8f2718b98574baaa3427 /java/src/com/android/inputmethod/latin/makedict/AbstractDictDecoder.java
parent39c6ea2115df1426d069d30db8286fc90b77967a (diff)
parent9514ed5c2a49e645e2d468f7191d54d77d9f127f (diff)
downloadlatinime-c068780b9d66348af776893fe3178f9d3630801f.tar.gz
latinime-c068780b9d66348af776893fe3178f9d3630801f.tar.xz
latinime-c068780b9d66348af776893fe3178f9d3630801f.zip
am 9514ed5c: Add the new format of bigram entries.
* commit '9514ed5c2a49e645e2d468f7191d54d77d9f127f': Add the new format of bigram entries.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/makedict/AbstractDictDecoder.java')
-rw-r--r--java/src/com/android/inputmethod/latin/makedict/AbstractDictDecoder.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/AbstractDictDecoder.java b/java/src/com/android/inputmethod/latin/makedict/AbstractDictDecoder.java
index 9f7f502ea..fda97dafc 100644
--- a/java/src/com/android/inputmethod/latin/makedict/AbstractDictDecoder.java
+++ b/java/src/com/android/inputmethod/latin/makedict/AbstractDictDecoder.java
@@ -60,7 +60,8 @@ public abstract class AbstractDictDecoder implements DictDecoder {
0 != (optionsFlags & FormatSpec.GERMAN_UMLAUT_PROCESSING_FLAG),
0 != (optionsFlags & FormatSpec.FRENCH_LIGATURE_PROCESSING_FLAG)),
new FormatOptions(version,
- 0 != (optionsFlags & FormatSpec.SUPPORTS_DYNAMIC_UPDATE)));
+ 0 != (optionsFlags & FormatSpec.SUPPORTS_DYNAMIC_UPDATE),
+ 0 != (optionsFlags & FormatSpec.CONTAINS_TIMESTAMP_FLAG)));
return header;
}