aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/WordComposer.java
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2014-07-29 15:51:07 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-07-29 15:51:07 +0000
commitc9bba853fa00f03bfc9b49931e320957adc15b20 (patch)
tree545fcd35c668f962f75b6dbc76918836369ed8ec /java/src/com/android/inputmethod/latin/WordComposer.java
parent8a584a2f610c2baf6f343fdccfb1eae42eda4351 (diff)
parent666f1b384f539c6426b9ee7bd6312005c69a3350 (diff)
downloadlatinime-c9bba853fa00f03bfc9b49931e320957adc15b20.tar.gz
latinime-c9bba853fa00f03bfc9b49931e320957adc15b20.tar.xz
latinime-c9bba853fa00f03bfc9b49931e320957adc15b20.zip
am 666f1b38: Merge "Revert "[HW7.5] Introduce the @Nonnull annotation"" into lmp-dev
* commit '666f1b384f539c6426b9ee7bd6312005c69a3350': Revert "[HW7.5] Introduce the @Nonnull annotation"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/WordComposer.java')
-rw-r--r--java/src/com/android/inputmethod/latin/WordComposer.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/WordComposer.java b/java/src/com/android/inputmethod/latin/WordComposer.java
index 75d616e38..171d0bba7 100644
--- a/java/src/com/android/inputmethod/latin/WordComposer.java
+++ b/java/src/com/android/inputmethod/latin/WordComposer.java
@@ -25,8 +25,6 @@ import com.android.inputmethod.latin.utils.StringUtils;
import java.util.ArrayList;
import java.util.Collections;
-import javax.annotation.Nonnull;
-
/**
* A place to store the currently composing word with information such as adjacent key codes as well
*/
@@ -181,7 +179,6 @@ public final class WordComposer {
* @param event the unprocessed event.
* @return the processed event. Never null, but may be marked as consumed.
*/
- @Nonnull
public Event processEvent(final Event event) {
final Event processedEvent = mCombinerChain.processEvent(mEvents, event);
mEvents.add(event);