aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/event/CombinerChain.java
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2014-07-30 16:57:55 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-07-30 16:57:55 +0000
commit55387ba41731460a412fe4f39c081ff9f6a550f2 (patch)
treec94b36fa4c4708e878d34890909bd014f1847144 /java/src/com/android/inputmethod/event/CombinerChain.java
parentcbffc447e741876d13230097064642208aca6e69 (diff)
parent9fbeeb609f85d962e28f51c4b582601ef4a5cae9 (diff)
downloadlatinime-55387ba41731460a412fe4f39c081ff9f6a550f2.tar.gz
latinime-55387ba41731460a412fe4f39c081ff9f6a550f2.tar.xz
latinime-55387ba41731460a412fe4f39c081ff9f6a550f2.zip
am 9fbeeb60: Merge "Revert "[HW7] Introduce consumed events"" into lmp-dev
* commit '9fbeeb609f85d962e28f51c4b582601ef4a5cae9': Revert "[HW7] Introduce consumed events"
Diffstat (limited to 'java/src/com/android/inputmethod/event/CombinerChain.java')
-rw-r--r--java/src/com/android/inputmethod/event/CombinerChain.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/event/CombinerChain.java b/java/src/com/android/inputmethod/event/CombinerChain.java
index 8ddc9e7d9..8c6b3d949 100644
--- a/java/src/com/android/inputmethod/event/CombinerChain.java
+++ b/java/src/com/android/inputmethod/event/CombinerChain.java
@@ -84,8 +84,6 @@ public class CombinerChain {
* Process an event through the combining chain, and return a processed event to apply.
* @param previousEvents the list of previous events in this composition
* @param newEvent the new event to process
- * @return the processed event. It may be the same event, or a consumed event, or a completely
- * new event. However it may never be null.
*/
public Event processEvent(final ArrayList<Event> previousEvents, final Event newEvent) {
final ArrayList<Event> modifiablePreviousEvents = new ArrayList<>(previousEvents);