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

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

Fix duplicate getSuggestions() call for main dictionary

Change-Id: I092480063452505cdf03dbd83b9c64e535822931
parent b2795974
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ public class DictionaryCollection extends Dictionary {
                prevWord, proximityInfo);
        if (null == suggestions) suggestions = new ArrayList<SuggestedWordInfo>();
        final int length = dictionaries.size();
        for (int i = 0; i < length; ++ i) {
        for (int i = 1; i < length; ++ i) {
            final ArrayList<SuggestedWordInfo> sugg = dictionaries.get(i).getSuggestions(composer,
                    prevWord, proximityInfo);
            if (null != sugg) suggestions.addAll(sugg);