diff options
author | 2013-10-16 02:44:30 -0700 | |
---|---|---|
committer | 2013-10-16 02:44:30 -0700 | |
commit | 6b451d56d4d694cad000088487eb8bc76189eb91 (patch) | |
tree | 23f2baa8843908969c3f75b563401ebe7cd61b4b /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 712099a069c4395d0f9ea4416e0419f89b63ac70 (diff) | |
parent | 5731b86b885a8cf7e3b7f9d612d4c82695bb9f73 (diff) | |
download | latinime-6b451d56d4d694cad000088487eb8bc76189eb91.tar.gz latinime-6b451d56d4d694cad000088487eb8bc76189eb91.tar.xz latinime-6b451d56d4d694cad000088487eb8bc76189eb91.zip |
am 5731b86b: Merge "Remove unneeded code."
* commit '5731b86b885a8cf7e3b7f9d612d4c82695bb9f73':
Remove unneeded code.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index e8ebf8860..e744d8d76 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1081,16 +1081,9 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen + ", ce=" + composingSpanEnd); } if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) { - final boolean expectingUpdateSelectionFromLogger = - ResearchLogger.getAndClearLatinIMEExpectingUpdateSelection(); ResearchLogger.latinIME_onUpdateSelection(mLastSelectionStart, mLastSelectionEnd, oldSelStart, oldSelEnd, newSelStart, newSelEnd, composingSpanStart, - composingSpanEnd, mExpectingUpdateSelection, - expectingUpdateSelectionFromLogger, mConnection); - if (expectingUpdateSelectionFromLogger) { - // TODO: Investigate. Quitting now sounds wrong - we won't do the resetting work - return; - } + composingSpanEnd, mExpectingUpdateSelection, mConnection); } final boolean selectionChanged = mLastSelectionStart != newSelStart |