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

Commit 5abcd06b authored by Andreas Gampe's avatar Andreas Gampe Committed by Gerrit Code Review
Browse files

Merge "Frameworks/base: Fix always-false equals"

parents 386dcbdd 007cfa73
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1979,7 +1979,8 @@ public interface WindowManager extends ViewManager {
            if (userActivityTimeout >= 0) {
                sb.append(" userActivityTimeout=").append(userActivityTimeout);
            }
            if (!surfaceInsets.equals(Insets.NONE)) {
            if (surfaceInsets.left != 0 || surfaceInsets.top != 0 || surfaceInsets.right != 0 ||
                    surfaceInsets.bottom != 0) {
                sb.append(" surfaceInsets=").append(surfaceInsets);
            }
            if (needsMenuKey != NEEDS_MENU_UNSET) {