diff options
author | 2013-12-27 21:00:28 +0900 | |
---|---|---|
committer | 2014-01-23 15:33:14 +0900 | |
commit | 1284e556f4ec998c6f3ea80905d690cbb4c9dc82 (patch) | |
tree | d9d121f03d16eb9f6cf221c87bc0f55263bbf347 /java/src/com/android/inputmethod/latin/WordComposer.java | |
parent | d1f463eacfaac31a999f7eb1ecaa1668ed3038d4 (diff) | |
download | latinime-1284e556f4ec998c6f3ea80905d690cbb4c9dc82.tar.gz latinime-1284e556f4ec998c6f3ea80905d690cbb4c9dc82.tar.xz latinime-1284e556f4ec998c6f3ea80905d690cbb4c9dc82.zip |
[IL70] Remove unused arguments
Bug: 8636060
Change-Id: Iec56bce362ebfc52fedab02b127978abb4f3c7f9
Diffstat (limited to 'java/src/com/android/inputmethod/latin/WordComposer.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/WordComposer.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/WordComposer.java b/java/src/com/android/inputmethod/latin/WordComposer.java index 0495a1e75..6cd84016e 100644 --- a/java/src/com/android/inputmethod/latin/WordComposer.java +++ b/java/src/com/android/inputmethod/latin/WordComposer.java @@ -300,11 +300,9 @@ public final class WordComposer { * @param coordinates the x, y coordinates of the key in the CoordinateUtils format * @param previousWord the previous word, to use as context for suggestions. Can be null if * the context is nil (typically, at start of text). - * @param keyboard the keyboard this is typed on, for coordinate info/proximity. */ - // TODO[IL]: the Keyboard argument is now unused. Remove it. public void setComposingWord(final int[] codePoints, final int[] coordinates, - final CharSequence previousWord, final Keyboard keyboard) { + final CharSequence previousWord) { reset(); final int length = codePoints.length; for (int i = 0; i < length; ++i) { |