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

Commit 4ababd27 authored by Brian Attwell's avatar Brian Attwell Committed by Android Git Automerger
Browse files

am 19d9d0ca: Merge "Rename "end" to "endExclusive" in addPhoneTtsSpan" into mnc-dev

* commit '19d9d0ca':
  Rename "end" to "endExclusive" in addPhoneTtsSpan
parents 9ddcef8e 19d9d0ca
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2351,12 +2351,12 @@ public class PhoneNumberUtils
     *
     * @param s A {@code Spannable} to annotate.
     * @param start The starting character position of the phone number in {@code s}.
     * @param end The ending character position of the phone number in {@code s}.
     * @param endExclusive The position after the ending character in the phone number {@code s}.
     */
    public static void addPhoneTtsSpan(Spannable s, int start, int end) {
        s.setSpan(getPhoneTtsSpan(s.subSequence(start, end).toString()),
    public static void addPhoneTtsSpan(Spannable s, int start, int endExclusive) {
        s.setSpan(getPhoneTtsSpan(s.subSequence(start, endExclusive).toString()),
                start,
                end,
                endExclusive,
                Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    }