diff options
author | 2015-03-11 16:11:50 -0700 | |
---|---|---|
committer | 2015-03-11 17:29:12 -0700 | |
commit | 107fb4c476779df16be23e245547253978c197ac (patch) | |
tree | eda7c85d72b7fa74efd8a489c1319958a9309e19 /java-overridable/src/com | |
parent | 9a289da4e6ea40417422a540e821069d5d6e4a82 (diff) | |
download | latinime-107fb4c476779df16be23e245547253978c197ac.tar.gz latinime-107fb4c476779df16be23e245547253978c197ac.tar.xz latinime-107fb4c476779df16be23e245547253978c197ac.zip |
Remove ALS from LatinIME.
This fixes unit tests and brings us closer to a green build.
Change-Id: Iffcc392eda4a7671a238b79cc7367320ca648725
Diffstat (limited to 'java-overridable/src/com')
-rw-r--r-- | java-overridable/src/com/android/inputmethod/latin/touchinputconsumer/GestureConsumer.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/java-overridable/src/com/android/inputmethod/latin/touchinputconsumer/GestureConsumer.java b/java-overridable/src/com/android/inputmethod/latin/touchinputconsumer/GestureConsumer.java index 4a44aaa94..7a5d2e68f 100644 --- a/java-overridable/src/com/android/inputmethod/latin/touchinputconsumer/GestureConsumer.java +++ b/java-overridable/src/com/android/inputmethod/latin/touchinputconsumer/GestureConsumer.java @@ -23,7 +23,6 @@ import com.android.inputmethod.latin.SuggestedWords; import com.android.inputmethod.latin.common.InputPointers; import com.android.inputmethod.latin.inputlogic.PrivateCommandPerformer; -import java.util.List; import java.util.Locale; /** @@ -39,7 +38,7 @@ public class GestureConsumer { public static GestureConsumer newInstance( final EditorInfo editorInfo, final PrivateCommandPerformer commandPerformer, - final List<Locale> locales, final Keyboard keyboard) { + final Locale locale, final Keyboard keyboard) { return GestureConsumer.NULL_GESTURE_CONSUMER; } @@ -50,10 +49,10 @@ public class GestureConsumer { return false; } - public void onInit(final List<Locale> locales, final Keyboard keyboard) { + public void onInit(final Locale locale, final Keyboard keyboard) { } - public void onGestureStarted(final List<Locale> locales, final Keyboard keyboard) { + public void onGestureStarted(final Locale locale, final Keyboard keyboard) { } public void onGestureCanceled() { |