diff options
author | 2011-12-13 00:01:25 -0800 | |
---|---|---|
committer | 2011-12-13 00:01:25 -0800 | |
commit | 0a2494fa5881152a9ed316409ae650353d8969fb (patch) | |
tree | 9fd5507440d93951db3aacd9c1e6fae0710c4dce /java/src | |
parent | b2632553bfcae5beb92f7366a71f15de30f44a9c (diff) | |
parent | 14cb8448df4f9f76096bceed0b367e87c7896c6c (diff) | |
download | latinime-0a2494fa5881152a9ed316409ae650353d8969fb.tar.gz latinime-0a2494fa5881152a9ed316409ae650353d8969fb.tar.xz latinime-0a2494fa5881152a9ed316409ae650353d8969fb.zip |
Merge "Remove a useless return"
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 6f7bdd85f..a67e4c938 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1433,9 +1433,6 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar } else { ic.deleteSurroundingText(1, 0); } - // If we had uncommitted chars then we know it's not time to revert any auto-correct - // and that spaceState is NONE. - return; } else { if (null != mWordSavedForAutoCorrectCancellation) { Utils.Stats.onAutoCorrectionCancellation(); |