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

Commit 07d709cf authored by Sumir Kataria's avatar Sumir Kataria Committed by Android (Google) Code Review
Browse files

Merge "Disallow reflection access to AdapterView#mDataChanged after P."

parents 0c6a0573 d80525db
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ import android.annotation.Nullable;
import android.annotation.UnsupportedAppUsage;
import android.content.Context;
import android.database.DataSetObserver;
import android.os.Build;
import android.os.Parcelable;
import android.os.SystemClock;
import android.util.AttributeSet;
@@ -152,7 +153,7 @@ public abstract class AdapterView<T extends Adapter> extends ViewGroup {
    /**
     * True if the data has changed since the last layout
     */
    @UnsupportedAppUsage
    @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 123768524)
    boolean mDataChanged;

    /**