Skip to content
Snippets Groups Projects
Commit 4c9bdcc9 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android (Google) Code Review
Browse files

Merge "Fix missing synchronized modifier" into jb-dev

parents 90b73b85 5b2eb0f5
No related branches found
No related tags found
No related merge requests found
...@@ -162,7 +162,7 @@ public class UserHistoryDictionary extends ExpandableDictionary { ...@@ -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;
} }
......
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