am c2a76a15: Remove a useless variable.

* commit 'c2a76a1529870b59bba133a7d76a800cbd20ecfa':
  Remove a useless variable.
This commit is contained in:
Jean Chalard 2011-12-12 00:01:21 -08:00 committed by Android Git Automerger
commit 8d987f75da

View file

@ -208,7 +208,6 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
private boolean mHasUncommittedTypedChars; private boolean mHasUncommittedTypedChars;
private int mCorrectionMode; private int mCorrectionMode;
private int mCommittedLength;
private String mWordSavedForAutoCorrectCancellation; private String mWordSavedForAutoCorrectCancellation;
// Keep track of the last selection range to decide if we need to show word alternatives // Keep track of the last selection range to decide if we need to show word alternatives
private int mLastSelectionStart; private int mLastSelectionStart;
@ -1151,7 +1150,6 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
if (ic != null) { if (ic != null) {
ic.commitText(typedWord, 1); ic.commitText(typedWord, 1);
} }
mCommittedLength = typedWord.length();
TextEntryState.acceptedTyped(typedWord); TextEntryState.acceptedTyped(typedWord);
addToUserUnigramAndBigramDictionaries(typedWord, addToUserUnigramAndBigramDictionaries(typedWord,
UserUnigramDictionary.FREQUENCY_FOR_TYPED); UserUnigramDictionary.FREQUENCY_FOR_TYPED);
@ -1901,7 +1899,6 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
final CompletionInfo completionInfo = mApplicationSpecifiedCompletions[index]; final CompletionInfo completionInfo = mApplicationSpecifiedCompletions[index];
ic.commitCompletion(completionInfo); ic.commitCompletion(completionInfo);
} }
mCommittedLength = suggestion.length();
if (mSuggestionsView != null) { if (mSuggestionsView != null) {
mSuggestionsView.clear(); mSuggestionsView.clear();
} }
@ -2019,7 +2016,6 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
} }
} }
mHasUncommittedTypedChars = false; mHasUncommittedTypedChars = false;
mCommittedLength = bestWord.length();
} }
private static final WordComposer sEmptyWordComposer = new WordComposer(); private static final WordComposer sEmptyWordComposer = new WordComposer();
@ -2206,7 +2202,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
// "ic" must not be null // "ic" must not be null
private void restartSuggestionsOnManuallyPickedTypedWord(final InputConnection ic) { private void restartSuggestionsOnManuallyPickedTypedWord(final InputConnection ic) {
final CharSequence separator = ic.getTextBeforeCursor(1, 0); final CharSequence separator = ic.getTextBeforeCursor(1, 0);
final int restartLength = mCommittedLength; final int restartLength = mWordComposer.size();
if (DEBUG) { if (DEBUG) {
final String wordBeforeCursor = final String wordBeforeCursor =
ic.getTextBeforeCursor(restartLength + 1, 0).subSequence(0, restartLength) ic.getTextBeforeCursor(restartLength + 1, 0).subSequence(0, restartLength)