Skip to content
Snippets Groups Projects
Commit f89a7513 authored by Jean Chalard's avatar Jean Chalard
Browse files

Small readability improvement (A10)

Change-Id: Iba326921711e1c4eab38264e66b6b44a64fec398
parent 06bc7fed
No related branches found
No related tags found
No related merge requests found
...@@ -166,6 +166,8 @@ public class Suggest { ...@@ -166,6 +166,8 @@ public class Suggest {
public SuggestedWords getSuggestedWords( public SuggestedWords getSuggestedWords(
final WordComposer wordComposer, CharSequence prevWordForBigram, final WordComposer wordComposer, CharSequence prevWordForBigram,
final ProximityInfo proximityInfo, final boolean isCorrectionEnabled, final ProximityInfo proximityInfo, final boolean isCorrectionEnabled,
// TODO: remove isPrediction parameter. It effectively means the same thing
// as wordComposer.size() <= 1
final boolean isPrediction) { final boolean isPrediction) {
LatinImeLogger.onStartSuggestion(prevWordForBigram); LatinImeLogger.onStartSuggestion(prevWordForBigram);
final boolean isFirstCharCapitalized = final boolean isFirstCharCapitalized =
...@@ -261,7 +263,7 @@ public class Suggest { ...@@ -261,7 +263,7 @@ public class Suggest {
LatinImeLogger.onAddSuggestedWord(wordInfo.mWord.toString(), wordInfo.mSourceDict); LatinImeLogger.onAddSuggestedWord(wordInfo.mWord.toString(), wordInfo.mSourceDict);
} }
if (!isPrediction) { if (!TextUtils.isEmpty(typedWord)) {
suggestionsContainer.add(0, new SuggestedWordInfo(typedWord, suggestionsContainer.add(0, new SuggestedWordInfo(typedWord,
SuggestedWordInfo.MAX_SCORE, SuggestedWordInfo.KIND_TYPED, SuggestedWordInfo.MAX_SCORE, SuggestedWordInfo.KIND_TYPED,
Dictionary.TYPE_USER_TYPED)); Dictionary.TYPE_USER_TYPED));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment