Add a more synthetic variable (A33)
The goal here is to disambiguate TypedWordValid and HasAutoCorrectionCandidate. Ultimately, HasAutoCorrectionCandidate will disappear. Bug: 6705473 Change-Id: I1acbd0a5efc7f4bf7b0bdb12839fe3d84e9d1ddamain
parent
9011b89f4e
commit
1b2e2d893d
|
@ -29,6 +29,7 @@ public class SuggestedWords {
|
|||
|
||||
public final boolean mTypedWordValid;
|
||||
public final boolean mHasAutoCorrectionCandidate;
|
||||
public final boolean mWillAutoCorrect;
|
||||
public final boolean mIsPunctuationSuggestions;
|
||||
public final boolean mIsObsoleteSuggestions;
|
||||
public final boolean mIsPrediction;
|
||||
|
@ -43,6 +44,7 @@ public class SuggestedWords {
|
|||
mSuggestedWordInfoList = suggestedWordInfoList;
|
||||
mTypedWordValid = typedWordValid;
|
||||
mHasAutoCorrectionCandidate = hasAutoCorrectionCandidate;
|
||||
mWillAutoCorrect = !mTypedWordValid && mHasAutoCorrectionCandidate;
|
||||
mIsPunctuationSuggestions = isPunctuationSuggestions;
|
||||
mIsObsoleteSuggestions = isObsoleteSuggestions;
|
||||
mIsPrediction = isPrediction;
|
||||
|
@ -69,7 +71,7 @@ public class SuggestedWords {
|
|||
}
|
||||
|
||||
public boolean willAutoCorrect() {
|
||||
return !mTypedWordValid && mHasAutoCorrectionCandidate;
|
||||
return mWillAutoCorrect;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue