Skip to content
Snippets Groups Projects
Commit 862f950d authored by Jean Chalard's avatar Jean Chalard
Browse files

Cleanup

Remove a useless test (we can only come here if the code
is not a separator, as we are only called from onCodeInput
inside an explicit test).

Change-Id: Icd996a5a1c18a550117a144a1d35f167b96211f7
parent fd6a52c8
No related branches found
No related tags found
No related merge requests found
......@@ -1533,11 +1533,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
sendKeyChar((char)code);
}
if (mSettingsValues.isWordSeparator(code)) {
Utils.Stats.onSeparator((char)code, x, y);
} else {
Utils.Stats.onNonSeparator((char)code, x, y);
}
Utils.Stats.onNonSeparator((char)code, x, y);
}
// Returns true if we did an autocorrection, false otherwise.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment