aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/event/Combiner.java
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2014-07-29 15:44:39 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-07-24 16:04:26 +0000
commit666f1b384f539c6426b9ee7bd6312005c69a3350 (patch)
tree94c2149cd692d9629c7f272dd51d916cf7b8a94d /java/src/com/android/inputmethod/event/Combiner.java
parentbcb61da581edfef5120a7a38a5de98d35fa65255 (diff)
parent8aa74da98d328a70f61569ce2a97945d442871ce (diff)
downloadlatinime-666f1b384f539c6426b9ee7bd6312005c69a3350.tar.gz
latinime-666f1b384f539c6426b9ee7bd6312005c69a3350.tar.xz
latinime-666f1b384f539c6426b9ee7bd6312005c69a3350.zip
Merge "Revert "[HW7.5] Introduce the @Nonnull annotation"" into lmp-dev
Diffstat (limited to '')
-rw-r--r--java/src/com/android/inputmethod/event/Combiner.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/event/Combiner.java b/java/src/com/android/inputmethod/event/Combiner.java
index fee93f0c6..8b808c6b3 100644
--- a/java/src/com/android/inputmethod/event/Combiner.java
+++ b/java/src/com/android/inputmethod/event/Combiner.java
@@ -18,8 +18,6 @@ package com.android.inputmethod.event;
import java.util.ArrayList;
-import javax.annotation.Nonnull;
-
/**
* A generic interface for combiners. Combiners are objects that transform chains of input events
* into committable strings and manage feedback to show to the user on the combining state.
@@ -35,7 +33,6 @@ public interface Combiner {
* @param event the event to combine with the existing state.
* @return the resulting event.
*/
- @Nonnull
Event processEvent(ArrayList<Event> previousEvents, Event event);
/**