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

Commit 0e8339ad authored by Galia Peycheva's avatar Galia Peycheva
Browse files

Fix return value in View#getUnrestrictedPreferKeepClearRects

Bug: 232052675
Test: m
Change-Id: I8e1bb15276f8e3bf19e78f1f8b9fe2b98c4f843e
parent a512a9b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11930,7 +11930,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
    @NonNull
    public final List<Rect> getUnrestrictedPreferKeepClearRects() {
        final ListenerInfo info = mListenerInfo;
        if (info != null && info.mKeepClearRects != null) {
        if (info != null && info.mUnrestrictedKeepClearRects != null) {
            return new ArrayList(info.mUnrestrictedKeepClearRects);
        }