diff options
author | 2012-02-21 16:52:39 -0800 | |
---|---|---|
committer | 2012-02-21 16:53:05 -0800 | |
commit | 8a3d369840d6061692a19ceb1eb7267a50a9e056 (patch) | |
tree | b21f384c5c65502c6a567577d619fe48fc788640 /java/src | |
parent | 9a2a11e65bd32d82754b3fcff74e9e3795327628 (diff) | |
download | latinime-8a3d369840d6061692a19ceb1eb7267a50a9e056.tar.gz latinime-8a3d369840d6061692a19ceb1eb7267a50a9e056.tar.xz latinime-8a3d369840d6061692a19ceb1eb7267a50a9e056.zip |
Remove a useles parens
...I could swear I had compiled :/
Change-Id: I4e1fb2b1dda0a4ceffe2082935395d05297c63ec
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 3abe514b0..c69cdd26e 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -895,7 +895,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar // state-related special processing to kick in. mSpaceState = SPACE_STATE_NONE; - if ((!mWordComposer.isComposingWord()) || selectionChanged || noComposingSpan)) { + if ((!mWordComposer.isComposingWord()) || selectionChanged || noComposingSpan) { resetEntireInputState(); } |