diff options
author | 2012-03-09 02:35:50 -0800 | |
---|---|---|
committer | 2012-03-09 02:35:50 -0800 | |
commit | 022ef7d13b4ed2addcafc061bb6a15fc7e52a598 (patch) | |
tree | b901cd95329b51db7ac600388c0a5698c3463f9c /java/src | |
parent | e3a2deff82fcfb18f7f7d80d8cdce5467149772a (diff) | |
parent | dfd4abe81844f3a26f5c484163806606dfeaa429 (diff) | |
download | latinime-022ef7d13b4ed2addcafc061bb6a15fc7e52a598.tar.gz latinime-022ef7d13b4ed2addcafc061bb6a15fc7e52a598.tar.xz latinime-022ef7d13b4ed2addcafc061bb6a15fc7e52a598.zip |
Merge "Fix a shameful bug"
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 509849467..5b4365902 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -2047,7 +2047,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar builder = null; } - if (null == builder || builder.size() > 0) { + if (null != builder && builder.size() > 0) { // Explicitly supply an empty typed word (the no-second-arg version of // showSuggestions will retrieve the word near the cursor, we don't want that here) showSuggestions(builder.build(), ""); |