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

Commit 43ad9184 authored by Galia Peycheva's avatar Galia Peycheva Committed by Automerger Merge Worker
Browse files

Merge "Fix return value in View#getUnrestrictedPreferKeepClearRects" into tm-dev am: 32667b28

parents 75073ffa 32667b28
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11941,7 +11941,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);
        }