diff options
author | 2014-07-29 15:56:52 +0000 | |
---|---|---|
committer | 2014-07-29 15:56:52 +0000 | |
commit | de10298db74ed896a1c411441281b397519f93b2 (patch) | |
tree | 4bcbcc7d9f1711d3d90115f9a65a2eeb7019f3c3 /java/src/com/android/inputmethod/event/Combiner.java | |
parent | f921ee1f63908980521fdc10b004ccdb2fcf742a (diff) | |
parent | f5705385360e7f660b3f899480396a06a1dc6079 (diff) | |
download | latinime-de10298db74ed896a1c411441281b397519f93b2.tar.gz latinime-de10298db74ed896a1c411441281b397519f93b2.tar.xz latinime-de10298db74ed896a1c411441281b397519f93b2.zip |
am f5705385: am c9bba853: am 666f1b38: Merge "Revert "[HW7.5] Introduce the @Nonnull annotation"" into lmp-dev
* commit 'f5705385360e7f660b3f899480396a06a1dc6079':
Revert "[HW7.5] Introduce the @Nonnull annotation"
Diffstat (limited to 'java/src/com/android/inputmethod/event/Combiner.java')
-rw-r--r-- | java/src/com/android/inputmethod/event/Combiner.java | 3 |
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); /** |