aboutsummaryrefslogtreecommitdiffstats
path: root/native/jni/src
diff options
context:
space:
mode:
authorKeisuke Kuroynagi <ksk@google.com>2013-07-01 07:31:45 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-07-01 07:31:45 +0000
commit28ade0938eeb8d05c42bb2fec8be21ee209b4fa2 (patch)
treed39d49a49fea40de451e6a0fc80acfe4453792df /native/jni/src
parente5a3b77664db1ecfd95601a806649f063eb604d3 (diff)
parent92db5e10b1f948a684ed9715d981d059e17e8c3a (diff)
downloadlatinime-28ade0938eeb8d05c42bb2fec8be21ee209b4fa2.tar.gz
latinime-28ade0938eeb8d05c42bb2fec8be21ee209b4fa2.tar.xz
latinime-28ade0938eeb8d05c42bb2fec8be21ee209b4fa2.zip
Merge "Remove format version 1 related logic."
Diffstat (limited to 'native/jni/src')
-rw-r--r--native/jni/src/suggest/policyimpl/dictionary/dictionary_structure_policy_factory.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/native/jni/src/suggest/policyimpl/dictionary/dictionary_structure_policy_factory.h b/native/jni/src/suggest/policyimpl/dictionary/dictionary_structure_policy_factory.h
index 5070651cb..c0e24fa4e 100644
--- a/native/jni/src/suggest/policyimpl/dictionary/dictionary_structure_policy_factory.h
+++ b/native/jni/src/suggest/policyimpl/dictionary/dictionary_structure_policy_factory.h
@@ -30,8 +30,6 @@ class DictionaryStructurePolicyFactory {
static const DictionaryStructurePolicy *getDictionaryStructurePolicy(
const BinaryDictionaryFormatUtils::FORMAT_VERSION dictionaryFormat) {
switch (dictionaryFormat) {
- case BinaryDictionaryFormatUtils::VERSION_1:
- // Fall through
case BinaryDictionaryFormatUtils::VERSION_2:
return PatriciaTriePolicy::getInstance();
default: