Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5b2eb0f5 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix missing synchronized modifier

Change-Id: Ied70a86bedb08adcf8353b189367172459f55292
parent ee8ac602
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ public class UserHistoryDictionary extends ExpandableDictionary {
     * Return whether the passed charsequence is in the dictionary.
     */
    @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.
        return false;
    }