Fix missing synchronized modifier
Change-Id: Ied70a86bedb08adcf8353b189367172459f55292
This commit is contained in:
parent
ee8ac602e8
commit
5b2eb0f505
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue