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

Commit 21ee3289 authored by Omar Elmekkawy's avatar Omar Elmekkawy Committed by Android (Google) Code Review
Browse files

Merge "Fix wrong usage on kotlin not equals operator in java." into main

parents 0c5b5043 f75876c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -215,7 +215,7 @@ public class DisplayController {
            newDisplayLayout.getStableBounds(newStableBounds);
        }

        if (oldStableBounds != newStableBounds) {
        if (!oldStableBounds.equals(newStableBounds)) {
            for (int i = 0; i < mDisplayChangedListeners.size(); ++i) {
                mDisplayChangedListeners.get(i).onStableInsetsChanging(
                        displayId, oldDisplayLayout);