aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/event/CombinerChain.java
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2014-07-30 00:54:41 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-07-24 16:04:26 +0000
commit9fbeeb609f85d962e28f51c4b582601ef4a5cae9 (patch)
tree0225afcd93fa94e6a7f7fa0f9ea8abd7d3a6710f /java/src/com/android/inputmethod/event/CombinerChain.java
parent2ce8799fa880aeb03595655eae242be0d62eac24 (diff)
parentbfa6f9533ca0d7ebb2650639765c77a77f37e0d9 (diff)
downloadlatinime-9fbeeb609f85d962e28f51c4b582601ef4a5cae9.tar.gz
latinime-9fbeeb609f85d962e28f51c4b582601ef4a5cae9.tar.xz
latinime-9fbeeb609f85d962e28f51c4b582601ef4a5cae9.zip
Merge "Revert "[HW7] Introduce consumed events"" into lmp-dev
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);