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

Commit 4108bc2e authored by Jean Chalard's avatar Jean Chalard Committed by Android Git Automerger
Browse files

am 7f226b4f: Merge "Fix an NPE on ICS factory rom."

* commit '7f226b4f':
  Fix an NPE on ICS factory rom.
parents cc13f886 7f226b4f
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -1649,8 +1649,10 @@ public final class InputLogic {
                }
                }
            }
            }
            // Add the suggestion list to the list of suggestions.
            // Add the suggestion list to the list of suggestions.
            textToCommit.setSpan(new SuggestionSpan(inputTransaction.mSettingsValues.mLocale,
            textToCommit.setSpan(new SuggestionSpan(mLatinIME /* context */,
                    suggestions.toArray(new String[suggestions.size()]), 0 /* flags */),
                    inputTransaction.mSettingsValues.mLocale,
                    suggestions.toArray(new String[suggestions.size()]), 0 /* flags */,
                    null /* notificationTargetClass */),
                    0 /* start */, lastCharIndex /* end */, 0 /* flags */);
                    0 /* start */, lastCharIndex /* end */, 0 /* flags */);
        }
        }