aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod
diff options
context:
space:
mode:
authorKurt Partridge <kep@google.com>2013-04-03 19:27:26 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-04-03 19:27:26 -0700
commit3ec6a8bdf92b1b60be0dc0a44c84b79b13ba8671 (patch)
tree2e9a094f6c51d4f49d788e50fd988592034ef841 /java/src/com/android/inputmethod
parent19fe4d4b6b6a39d1c66d696b63aa272cb707187e (diff)
parent6c522b53f0950fa511bf93e1e506434e7cdef6ad (diff)
downloadlatinime-3ec6a8bdf92b1b60be0dc0a44c84b79b13ba8671.tar.gz
latinime-3ec6a8bdf92b1b60be0dc0a44c84b79b13ba8671.tar.xz
latinime-3ec6a8bdf92b1b60be0dc0a44c84b79b13ba8671.zip
am 6c522b53: am 0c0ab2b4: Merge "Reorder ResearchLogger call"
* commit '6c522b53f0950fa511bf93e1e506434e7cdef6ad': Reorder ResearchLogger call
Diffstat (limited to 'java/src/com/android/inputmethod')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java4
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 92b68dcd7..0fc26a80e 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1143,11 +1143,11 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
if (!mWordComposer.isComposingWord()) return;
final String typedWord = mWordComposer.getTypedWord();
if (typedWord.length() > 0) {
- commitChosenWord(typedWord, LastComposedWord.COMMIT_TYPE_USER_TYPED_WORD,
- separatorString);
if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) {
ResearchLogger.getInstance().onWordFinished(typedWord, mWordComposer.isBatchMode());
}
+ commitChosenWord(typedWord, LastComposedWord.COMMIT_TYPE_USER_TYPED_WORD,
+ separatorString);
}
}