aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2012-04-03 00:49:55 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-04-03 00:49:55 -0700
commit244c825c4b72a5446fce96b9c3a609c9f07bb6be (patch)
tree5a7e3dfed8ab134b1184859d4736d12823cffc88 /java/src/com/android/inputmethod/latin
parent7a0779a441fdad960176187b59628e77f3bd331a (diff)
parent0d1a5d5b9710dd8fbdae18b0e69bccb53c7b9207 (diff)
downloadlatinime-244c825c4b72a5446fce96b9c3a609c9f07bb6be.tar.gz
latinime-244c825c4b72a5446fce96b9c3a609c9f07bb6be.tar.xz
latinime-244c825c4b72a5446fce96b9c3a609c9f07bb6be.zip
Merge "Cleanup EditorInfoCompatUtils"
Diffstat (limited to 'java/src/com/android/inputmethod/latin')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 3b41e3b0c..177f5e629 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -56,7 +56,6 @@ import android.view.inputmethod.InputMethodSubtype;
import com.android.inputmethod.accessibility.AccessibilityUtils;
import com.android.inputmethod.accessibility.AccessibleKeyboardViewProxy;
import com.android.inputmethod.compat.CompatUtils;
-import com.android.inputmethod.compat.EditorInfoCompatUtils;
import com.android.inputmethod.compat.InputMethodManagerCompatWrapper;
import com.android.inputmethod.compat.SuggestionSpanUtils;
import com.android.inputmethod.keyboard.Keyboard;
@@ -1273,7 +1272,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
performeEditorAction(EditorInfo.IME_ACTION_NEXT);
break;
case Keyboard.CODE_ACTION_PREVIOUS:
- EditorInfoCompatUtils.performEditorActionPrevious(getCurrentInputConnection());
+ performeEditorAction(EditorInfo.IME_ACTION_PREVIOUS);
break;
case Keyboard.CODE_LANGUAGE_SWITCH:
handleLanguageSwitchKey();