aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-01-27 11:17:04 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-01-27 11:17:05 +0000
commit264f4e380dd496b156914a47089bd26b9eba1cb6 (patch)
tree3d8d6908adb51692ca25646f1dee54b33c1f82d2 /java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
parent7ac542d490b4761837733d1732a8e6ca8c097739 (diff)
parentb2c0388a6961b7df96864ba693a2dd84c1f8a1b0 (diff)
downloadlatinime-264f4e380dd496b156914a47089bd26b9eba1cb6.tar.gz
latinime-264f4e380dd496b156914a47089bd26b9eba1cb6.tar.xz
latinime-264f4e380dd496b156914a47089bd26b9eba1cb6.zip
Merge "[IL84] Remove a useless call and rename a method"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java')
-rw-r--r--java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
index e688d2c31..0554cadfc 100644
--- a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
+++ b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
@@ -722,7 +722,7 @@ public final class InputLogic {
// Set punctuation right away. onUpdateSelection will fire but tests whether it is
// already displayed or not, so it's okay.
- mLatinIME.setPunctuationSuggestions();
+ mLatinIME.setNeutralSuggestionStrip();
}
keyboardSwitcher.updateShiftState();
@@ -1075,7 +1075,7 @@ public final class InputLogic {
}
if (!mWordComposer.isComposingWord() && !settingsValues.mBigramPredictionEnabled) {
- mLatinIME.setPunctuationSuggestions();
+ mLatinIME.setNeutralSuggestionStrip();
return;
}