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

Commit cdf77412 authored by Jean Chalard's avatar Jean Chalard Committed by Android (Google) Code Review
Browse files

Merge "Fix a small bug"

parents bfaf349c ca52e1ca
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ import android.os.Message;
import android.os.SystemClock;
import android.preference.PreferenceManager;
import android.text.InputType;
import android.text.SpannableString;
import android.text.Spanned;
import android.text.TextUtils;
import android.text.style.SuggestionSpan;
import android.util.Log;
@@ -2517,10 +2517,10 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
        final ArrayList<SuggestedWordInfo> suggestions = CollectionUtils.newArrayList();
        final CharSequence word = range.mWord;
        final String typedWord = word.toString();
        if (word instanceof SpannableString) {
            final SpannableString spannableString = (SpannableString)word;
        if (word instanceof Spanned) {
            final Spanned spanned = (Spanned)word;
            int i = 0;
            for (Object object : spannableString.getSpans(0, spannableString.length(),
            for (Object object : spanned.getSpans(0, spanned.length(),
                    SuggestionSpan.class)) {
                SuggestionSpan span = (SuggestionSpan)object;
                for (String s : span.getSuggestions()) {