Revert "Make a member read-only"

This reverts commit 6a43e39bf0
main
Jean Chalard 2012-03-02 02:49:24 -08:00 committed by Android (Google) Code Review
parent 6a43e39bf0
commit f1967ce322
3 changed files with 3 additions and 7 deletions

View File

@ -29,7 +29,7 @@ public class SuggestedWords {
public final List<CharSequence> mWords; public final List<CharSequence> mWords;
public final boolean mTypedWordValid; public final boolean mTypedWordValid;
private final boolean mHasAutoCorrectionCandidate; public final boolean mHasAutoCorrectionCandidate;
public final boolean mIsPunctuationSuggestions; public final boolean mIsPunctuationSuggestions;
private final List<SuggestedWordInfo> mSuggestedWordInfoList; private final List<SuggestedWordInfo> mSuggestedWordInfoList;
private boolean mShouldBlockAutoCorrection; private boolean mShouldBlockAutoCorrection;
@ -69,10 +69,6 @@ public class SuggestedWords {
return mHasAutoCorrectionCandidate && ((size() > 1 && !mTypedWordValid) || mTypedWordValid); return mHasAutoCorrectionCandidate && ((size() > 1 && !mTypedWordValid) || mTypedWordValid);
} }
public boolean hasAutoCorrectionCandidate() {
return mHasAutoCorrectionCandidate;
}
public boolean isPunctuationSuggestions() { public boolean isPunctuationSuggestions() {
return mIsPunctuationSuggestions; return mIsPunctuationSuggestions;
} }

View File

@ -775,7 +775,7 @@ public class Utils {
} }
public static boolean willAutoCorrect(SuggestedWords suggestions) { public static boolean willAutoCorrect(SuggestedWords suggestions) {
return !suggestions.mTypedWordValid && suggestions.hasAutoCorrectionCandidate() return !suggestions.mTypedWordValid && suggestions.mHasAutoCorrectionCandidate
&& !suggestions.shouldBlockAutoCorrection(); && !suggestions.shouldBlockAutoCorrection();
} }

View File

@ -307,7 +307,7 @@ public class SuggestionsView extends RelativeLayout implements OnClickListener,
color = mColorTypedWord; color = mColorTypedWord;
} }
if (LatinImeLogger.sDBG) { if (LatinImeLogger.sDBG) {
if (index == mCenterSuggestionIndex && suggestions.hasAutoCorrectionCandidate() if (index == mCenterSuggestionIndex && suggestions.mHasAutoCorrectionCandidate
&& suggestions.shouldBlockAutoCorrection()) { && suggestions.shouldBlockAutoCorrection()) {
return 0xFFFF0000; return 0xFFFF0000;
} }