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/DeadKeyCombiner.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/DeadKeyCombiner.java')
-rw-r--r-- | java/src/com/android/inputmethod/event/DeadKeyCombiner.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/event/DeadKeyCombiner.java b/java/src/com/android/inputmethod/event/DeadKeyCombiner.java index d816247d8..342f499c9 100644 --- a/java/src/com/android/inputmethod/event/DeadKeyCombiner.java +++ b/java/src/com/android/inputmethod/event/DeadKeyCombiner.java @@ -23,8 +23,6 @@ import com.android.inputmethod.latin.Constants; import java.util.ArrayList; -import javax.annotation.Nonnull; - /** * A combiner that handles dead keys. */ @@ -33,7 +31,6 @@ public class DeadKeyCombiner implements Combiner { final StringBuilder mDeadSequence = new StringBuilder(); @Override - @Nonnull public Event processEvent(final ArrayList<Event> previousEvents, final Event event) { if (TextUtils.isEmpty(mDeadSequence)) { if (event.isDead()) { |