aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/settings/Settings.java
diff options
context:
space:
mode:
authorChieu Nguyen <cvnguyen@google.com>2015-03-12 00:32:06 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-03-12 00:32:06 +0000
commit3b23d1871e70a18e204259aaf2ae2fdbc4a7a300 (patch)
treece5d0736a78e25b3fb6d7624163a337dbbb19d6d /java/src/com/android/inputmethod/latin/settings/Settings.java
parent9a2e1ef6b4370b90bc47bb8e58ba3932b289349b (diff)
parent4e0af43673936c336fff298bc9aeee1d75c3bc92 (diff)
downloadlatinime-3b23d1871e70a18e204259aaf2ae2fdbc4a7a300.tar.gz
latinime-3b23d1871e70a18e204259aaf2ae2fdbc4a7a300.tar.xz
latinime-3b23d1871e70a18e204259aaf2ae2fdbc4a7a300.zip
am 4e0af436: Remove unused phrase gesture code.
* commit '4e0af43673936c336fff298bc9aeee1d75c3bc92': Remove unused phrase gesture code.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/settings/Settings.java')
-rw-r--r--java/src/com/android/inputmethod/latin/settings/Settings.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/java/src/com/android/inputmethod/latin/settings/Settings.java b/java/src/com/android/inputmethod/latin/settings/Settings.java
index 6ece59d17..5596c7fe9 100644
--- a/java/src/com/android/inputmethod/latin/settings/Settings.java
+++ b/java/src/com/android/inputmethod/latin/settings/Settings.java
@@ -90,7 +90,6 @@ public final class Settings implements SharedPreferences.OnSharedPreferenceChang
public static final String PREF_GESTURE_PREVIEW_TRAIL = "pref_gesture_preview_trail";
public static final String PREF_GESTURE_FLOATING_PREVIEW_TEXT =
"pref_gesture_floating_preview_text";
- public static final String PREF_PHRASE_GESTURE_ENABLED = "pref_gesture_space_aware";
public static final String PREF_KEY_IS_INTERNAL = "pref_key_is_internal";
@@ -235,12 +234,6 @@ public final class Settings implements SharedPreferences.OnSharedPreferenceChang
&& prefs.getBoolean(PREF_GESTURE_INPUT, true);
}
- public static boolean readPhraseGestureEnabled(final SharedPreferences prefs,
- final Resources res) {
- return prefs.getBoolean(PREF_PHRASE_GESTURE_ENABLED,
- res.getBoolean(R.bool.config_default_phrase_gesture_enabled));
- }
-
public static boolean readFromBuildConfigIfToShowKeyPreviewPopupOption(final Resources res) {
return res.getBoolean(R.bool.config_enable_show_key_preview_popup_option);
}