Merge "Fix missing synchronized modifier" into jb-dev

main
Tadashi G. Takaoka 2012-05-06 09:52:52 -07:00 committed by Android (Google) Code Review
commit 4c9bdcc957
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ public class UserHistoryDictionary extends ExpandableDictionary {
* Return whether the passed charsequence is in the dictionary. * Return whether the passed charsequence is in the dictionary.
*/ */
@Override @Override
public boolean isValidWord(final CharSequence word) { public synchronized boolean isValidWord(final CharSequence word) {
// TODO: figure out what is the correct thing to do here. // TODO: figure out what is the correct thing to do here.
return false; return false;
} }