diff options
author | 2013-10-16 17:38:18 +0900 | |
---|---|---|
committer | 2013-10-16 18:36:16 +0900 | |
commit | 497976e09b4aa3ffcef22d7ab34df1eacf933994 (patch) | |
tree | 2c0a01b8eb6c95d8ab891ee0f194570ef9a219b5 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 612885f65b0fa56bfd5d7001796619241127decf (diff) | |
download | latinime-497976e09b4aa3ffcef22d7ab34df1eacf933994.tar.gz latinime-497976e09b4aa3ffcef22d7ab34df1eacf933994.tar.xz latinime-497976e09b4aa3ffcef22d7ab34df1eacf933994.zip |
Remove unneeded code.
We don't support LOG_FULL_TEXTVIEW_CONTENTS any more, nor do
we have any plans to support it again in the future.
This also is a prelude to removing mIsExpectingUpdateSelection.
Bug: 11226045
Change-Id: Ib68c6daf52993b87225a7ea9e71a414caaecfdb7
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 |