From 0fd556cecaf4431e349c990c9a0bb1c7ed3a24a2 Mon Sep 17 00:00:00 2001 From: Jean Chalard Date: Wed, 15 Jan 2014 10:23:54 +0900 Subject: [IL74] Remove unused/unwanted arguments to a method. Bug: 8636060 Change-Id: I3c5213cc57b5b5febd25f14d40c197d2da43dfb8 --- java/src/com/android/inputmethod/latin/LatinIME.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java') diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index b094100c6..f95d77d3d 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -888,10 +888,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen mInputLogic.finishInput(); // Notify ResearchLogger if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) { - ResearchLogger.latinIME_onFinishInputViewInternal(finishingInput, - // TODO[IL]: mInputLogic.mConnection should be private - mInputLogic.mConnection.getExpectedSelectionStart(), - mInputLogic.mConnection.getExpectedSelectionEnd(), getCurrentInputConnection()); + ResearchLogger.latinIME_onFinishInputViewInternal(finishingInput); } } -- cgit v1.2.3-83-g751a