diff options
author | 2015-01-30 01:45:46 +0000 | |
---|---|---|
committer | 2015-01-30 01:45:46 +0000 | |
commit | 10155b5ef8edabb1c6c4e8863a2e773130bececa (patch) | |
tree | bd092084894b94de992ddae0f27027464efe1185 /java/src/com/android/inputmethod/latin/settings/SettingsValues.java | |
parent | 7eb388c7371e1945aa3a07e5919313e3873b7593 (diff) | |
parent | 77e0fa1d6708fa53549d80fcd2035da5a30e4140 (diff) | |
download | latinime-10155b5ef8edabb1c6c4e8863a2e773130bececa.tar.gz latinime-10155b5ef8edabb1c6c4e8863a2e773130bececa.tar.xz latinime-10155b5ef8edabb1c6c4e8863a2e773130bececa.zip |
am 77e0fa1d: LatinIME portion of multi-lang option removal.
* commit '77e0fa1d6708fa53549d80fcd2035da5a30e4140':
LatinIME portion of multi-lang option removal.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/settings/SettingsValues.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/settings/SettingsValues.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/java/src/com/android/inputmethod/latin/settings/SettingsValues.java b/java/src/com/android/inputmethod/latin/settings/SettingsValues.java index 0669026d8..a080515dd 100644 --- a/java/src/com/android/inputmethod/latin/settings/SettingsValues.java +++ b/java/src/com/android/inputmethod/latin/settings/SettingsValues.java @@ -102,10 +102,6 @@ public class SettingsValues { private final boolean mSuggestionsEnabledPerUserSettings; private final AsyncResultHolder<AppWorkaroundsUtils> mAppWorkarounds; - // Setting values for additional features - public final int[] mAdditionalFeaturesSettingValues = - new int[AdditionalFeaturesSettingUtils.ADDITIONAL_FEATURES_SETTINGS_SIZE]; - // TextDecorator public final int mTextHighlightColorForAddToDictionaryIndicator; @@ -187,8 +183,6 @@ public class SettingsValues { mAutoCorrectionEnabledPerUserSettings = mAutoCorrectEnabled && !mInputAttributes.mInputTypeNoAutoCorrect; mSuggestionsEnabledPerUserSettings = readSuggestionsEnabled(prefs); - AdditionalFeaturesSettingUtils.readAdditionalFeaturesPreferencesIntoArray(context, - prefs, mAdditionalFeaturesSettingValues); mTextHighlightColorForAddToDictionaryIndicator = res.getColor( R.color.text_decorator_add_to_dictionary_indicator_text_highlight_color); mIsInternal = Settings.isInternal(prefs); @@ -437,8 +431,6 @@ public class SettingsValues { sb.append("\n mAppWorkarounds = "); final AppWorkaroundsUtils awu = mAppWorkarounds.get(null, 0); sb.append("" + (null == awu ? "null" : awu.toString())); - sb.append("\n mAdditionalFeaturesSettingValues = "); - sb.append("" + Arrays.toString(mAdditionalFeaturesSettingValues)); sb.append("\n mTextHighlightColorForAddToDictionaryIndicator = "); sb.append("" + mTextHighlightColorForAddToDictionaryIndicator); sb.append("\n mIsInternal = "); |