diff options
author | 2012-04-02 22:31:17 +0900 | |
---|---|---|
committer | 2012-04-03 16:45:36 +0900 | |
commit | 0d1a5d5b9710dd8fbdae18b0e69bccb53c7b9207 (patch) | |
tree | 514d976aea30db64b26a188d033f466fb6782877 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 13d6ecc4c275b9e9c38c7713bb2c69d37f3467f3 (diff) | |
download | latinime-0d1a5d5b9710dd8fbdae18b0e69bccb53c7b9207.tar.gz latinime-0d1a5d5b9710dd8fbdae18b0e69bccb53c7b9207.tar.xz latinime-0d1a5d5b9710dd8fbdae18b0e69bccb53c7b9207.zip |
Cleanup EditorInfoCompatUtils
Bug: 6129704
Change-Id: I5b9964f2ad52e7cd60c63acca93d0241a1e729ef
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 3 |
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(); |