Move a member call out of the way
Change-Id: I5da48442c0b39aaff817c3b6d067a9b13fda0643
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 39f1442..d25577c 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1394,6 +1394,7 @@
return;
}
if (SPACE_STATE_DOUBLE == spaceState) {
+ mHandler.cancelDoubleSpacesTimer();
if (revertDoubleSpaceWhileInBatchEdit()) {
// No need to reset mSpaceState, it has already be done (that's why we
// receive it as a parameter)
@@ -2075,7 +2076,6 @@
}
private boolean revertDoubleSpaceWhileInBatchEdit() {
- mHandler.cancelDoubleSpacesTimer();
// Here we test whether we indeed have a period and a space before us. This should not
// be needed, but it's there just in case something went wrong.
final CharSequence textBeforeCursor = mConnection.getTextBeforeCursor(2, 0);