diff options
author | 2012-09-14 19:36:50 +0900 | |
---|---|---|
committer | 2012-09-18 18:49:17 +0900 | |
commit | e4783f95b2ad9f46ece34103cbe4d8eb5ea8afca (patch) | |
tree | 6e037d4ef377b021d83192ec90493eb68feab5ff /java/src | |
parent | d461bfd6601dfb6d4a4f78be0ff129597af895ff (diff) | |
download | latinime-e4783f95b2ad9f46ece34103cbe4d8eb5ea8afca.tar.gz latinime-e4783f95b2ad9f46ece34103cbe4d8eb5ea8afca.tar.xz latinime-e4783f95b2ad9f46ece34103cbe4d8eb5ea8afca.zip |
Mark 2 resolved TODOS as such (A14)
Change-Id: Ifbb731f5c825675436d079db4ffbae657d71f8da
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 10a6e9544..23334d6f3 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1391,11 +1391,11 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen if (mWordComposer.isComposingWord()) { commitTyped(LastComposedWord.NOT_A_SEPARATOR); mExpectingUpdateSelection = true; - // TODO: Can we remove this? + // The following is necessary for the case where the user typed something but didn't + // manual pick it and didn't input any separator. mSpaceState = SPACE_STATE_PHANTOM; } mConnection.endBatchEdit(); - // TODO: Should handle TextUtils.CAP_MODE_CHARACTER. mWordComposer.setCapitalizedModeAtStartComposingTime(getActualCapsMode()); } |