Merge "Make a method accessible for tests"
This commit is contained in:
commit
30936116d8
1 changed files with 2 additions and 1 deletions
|
@ -122,7 +122,8 @@ public class SuggestedWords {
|
|||
return addWord(word, info);
|
||||
}
|
||||
|
||||
private Builder addWord(CharSequence word, SuggestedWordInfo suggestedWordInfo) {
|
||||
/* package for tests */
|
||||
Builder addWord(CharSequence word, SuggestedWordInfo suggestedWordInfo) {
|
||||
if (!TextUtils.isEmpty(word)) {
|
||||
mWords.add(word);
|
||||
// It's okay if suggestedWordInfo is null since it's checked where it's used.
|
||||
|
|
Loading…
Reference in a new issue