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

Commit 19d9d0ca authored by Brian Attwell's avatar Brian Attwell Committed by Android (Google) Code Review
Browse files

Merge "Rename "end" to "endExclusive" in addPhoneTtsSpan" into mnc-dev

parents 3c436cb9 1a15ab91
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);
    }