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

Commit 11b07c05 authored by Andreas Gampe's avatar Andreas Gampe Committed by Android Git Automerger
Browse files

am 14e436ae: am 345a8f69: Merge "Frameworks/base: Fix a comparison"

* commit '14e436ae':
  Frameworks/base: Fix a comparison
parents bb41a5f6 14e436ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -573,7 +573,7 @@ public final class AccessibilityWindowInfo implements Parcelable {
        if (other.mType != mType) {
        if (other.mType != mType) {
            throw new IllegalArgumentException("Not same type.");
            throw new IllegalArgumentException("Not same type.");
        }
        }
        if (!mBoundsInScreen.equals(mBoundsInScreen)) {
        if (!mBoundsInScreen.equals(other.mBoundsInScreen)) {
            return true;
            return true;
        }
        }
        if (mLayer != other.mLayer) {
        if (mLayer != other.mLayer) {