diff options
author | 2015-03-12 17:22:37 +0000 | |
---|---|---|
committer | 2015-03-12 17:22:37 +0000 | |
commit | b724ff1d11d10da8569bba472e2d3252086047cc (patch) | |
tree | 1172623d89367a88a9ca7cc189f14c76e5943666 /java-overridable/src/com/android/inputmethod | |
parent | 2c3aae8a0cc45a5e1888d3b9d9a1a8d3779c945a (diff) | |
parent | 7e1dfaae3d6ca9aff1acfa9b358ad0b759ef0ec8 (diff) | |
download | latinime-b724ff1d11d10da8569bba472e2d3252086047cc.tar.gz latinime-b724ff1d11d10da8569bba472e2d3252086047cc.tar.xz latinime-b724ff1d11d10da8569bba472e2d3252086047cc.zip |
am 7e1dfaae: Merge "Remove ALS from LatinIME."
* commit '7e1dfaae3d6ca9aff1acfa9b358ad0b759ef0ec8':
Remove ALS from LatinIME.
Diffstat (limited to 'java-overridable/src/com/android/inputmethod')
-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() { |