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

Commit 038b8462 authored by Andreas Gampe's avatar Andreas Gampe Committed by Android Git Automerger
Browse files

am 5abcd06b: Merge "Frameworks/base: Fix always-false equals"

* commit '5abcd06b':
  Frameworks/base: Fix always-false equals
parents 059ba981 5abcd06b
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) {