Remove a useless return

Change-Id: Iefe10e94e2d88171387351a5b6cab52e281d0f76
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 6f7bdd8..a67e4c9 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1433,9 +1433,6 @@
             } 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();