From 8aa74da98d328a70f61569ce2a97945d442871ce Mon Sep 17 00:00:00 2001 From: Ken Wakasa Date: Tue, 29 Jul 2014 15:43:59 +0000 Subject: Revert "[HW7.5] Introduce the @Nonnull annotation" This reverts commit 60a2cd8ac439bf41bfddc5f5f339feda7c7ff175. Reverting due to build breakage under the unbundled branch. Change-Id: Iab2988c53884166f62c95da920ac7a7079a0e5a0 --- java/src/com/android/inputmethod/event/Combiner.java | 3 --- 1 file changed, 3 deletions(-) (limited to 'java/src/com/android/inputmethod/event/Combiner.java') 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 previousEvents, Event event); /** -- cgit v1.2.3-83-g751a