Skip to content
Snippets Groups Projects
Commit e581d8f8 authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi Committed by Android (Google) Code Review
Browse files

Merge "Fix: contains() is wrongly used in hasDict()."

parents 1ed248dc bdf31fb7
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ public class DictionaryFacilitatorForSuggest {
}
public boolean hasDict(final String dictType) {
return mDictMap.contains(dictType);
return mDictMap.containsKey(dictType);
}
public void closeDict(final String dictType) {
......
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