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

Commit 7021998c authored by Phil Weaver's avatar Phil Weaver Committed by Android (Google) Code Review
Browse files

Merge "Make deep copies of a11y data."

parents 71735d9c ef955ad3
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -2233,7 +2233,7 @@ public class AccessibilityNodeInfo implements Parcelable {
     */
    public void setText(CharSequence text) {
        enforceNotSealed();
        mText = text;
        mText = (text == null) ? null : text.subSequence(0, text.length());
    }

    /**
@@ -2250,7 +2250,7 @@ public class AccessibilityNodeInfo implements Parcelable {
     */
    public void setError(CharSequence error) {
        enforceNotSealed();
        mError = error;
        mError = (error == null) ? null : error.subSequence(0, error.length());
    }

    /**
@@ -2285,7 +2285,8 @@ public class AccessibilityNodeInfo implements Parcelable {
     */
    public void setContentDescription(CharSequence contentDescription) {
        enforceNotSealed();
        mContentDescription = contentDescription;
        mContentDescription = (contentDescription == null) ? null
                : contentDescription.subSequence(0, contentDescription.length());
    }

    /**
+4 −2
Original line number Diff line number Diff line
@@ -572,7 +572,8 @@ public class AccessibilityRecord {
     */
    public void setBeforeText(CharSequence beforeText) {
        enforceNotSealed();
        mBeforeText = beforeText;
        mBeforeText = (beforeText == null) ? null
                : beforeText.subSequence(0, beforeText.length());
    }

    /**
@@ -593,7 +594,8 @@ public class AccessibilityRecord {
     */
    public void setContentDescription(CharSequence contentDescription) {
        enforceNotSealed();
        mContentDescription = contentDescription;
        mContentDescription = (contentDescription == null) ? null
                : contentDescription.subSequence(0, contentDescription.length());
    }

    /**