Merge "[IL59] Rename a method"

This commit is contained in:
Jean Chalard 2014-01-16 18:13:39 +00:00 committed by Android (Google) Code Review
commit 87f87d9ac5
2 changed files with 2 additions and 2 deletions

View file

@ -213,7 +213,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
postUpdateSuggestionStrip(); postUpdateSuggestionStrip();
break; break;
case MSG_ON_END_BATCH_INPUT: case MSG_ON_END_BATCH_INPUT:
latinIme.mInputLogic.endBatchInputAsyncInternal(latinIme.mSettings.getCurrent(), latinIme.mInputLogic.endBatchInputInternal(latinIme.mSettings.getCurrent(),
(SuggestedWords) msg.obj, latinIme.mKeyboardSwitcher); (SuggestedWords) msg.obj, latinIme.mKeyboardSwitcher);
break; break;
case MSG_RESET_CACHES: case MSG_RESET_CACHES:

View file

@ -1534,7 +1534,7 @@ public final class InputLogic {
* @param settingsValues the current values of the settings. * @param settingsValues the current values of the settings.
* @param suggestedWords suggestedWords to use. * @param suggestedWords suggestedWords to use.
*/ */
public void endBatchInputAsyncInternal(final SettingsValues settingsValues, public void endBatchInputInternal(final SettingsValues settingsValues,
final SuggestedWords suggestedWords, final SuggestedWords suggestedWords,
// TODO: remove this argument // TODO: remove this argument
final KeyboardSwitcher keyboardSwitcher) { final KeyboardSwitcher keyboardSwitcher) {