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

Commit a3f5f51e authored by Jean Chalard's avatar Jean Chalard
Browse files

Fix a bug where a log would mysteriously not work

Change-Id: I5ca77ed65e95a6d357215c0e730238fb463986bb
parent 22657dcb
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -432,10 +432,9 @@ public class Suggest {
        suggestions.add(pos, transformedWordInfo);
        if (suggestions.size() > prefMaxSuggestions) {
            suggestions.remove(prefMaxSuggestions);
        } else {
        }
        LatinImeLogger.onAddSuggestedWord(transformedWordInfo.mWord.toString(), dicTypeId,
                dataTypeForLog);
        }
        return true;
    }