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

Commit 2d508203 authored by Yohei Yukawa's avatar Yohei Yukawa Committed by Android Git Automerger
Browse files

am 8681287c: Fix build due to an illegal character

* commit '8681287c':
  Fix build due to an illegal character
parents 02716083 8681287c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ public final class InputLogic {
        // AND it's in none of our current dictionaries (main, user or otherwise).
        return (suggestionInfo.isKindOf(SuggestedWordInfo.KIND_TYPED)
                || suggestionInfo.isKindOf(SuggestedWordInfo.KIND_OOV_CORRECTION))
                && !mDictionaryFacilitator.isValidWord(suggestionInfo.mWord, true /* ignoreCase */)
                && !mDictionaryFacilitator.isValidWord(suggestionInfo.mWord, true /* ignoreCase */)
                && mDictionaryFacilitator.isUserDictionaryEnabled();
    }