Frameworks/base: Fix a comparison

Change-Id: I80d62869920e77110c95f20369ec2631c75f6ed4
This commit is contained in:
Andreas Gampe
2015-03-15 18:04:41 -07:00
parent 30fcd2aa8a
commit 650989b0b5

View File

@@ -573,7 +573,7 @@ public final class AccessibilityWindowInfo implements Parcelable {
if (other.mType != mType) {
throw new IllegalArgumentException("Not same type.");
}
if (!mBoundsInScreen.equals(mBoundsInScreen)) {
if (!mBoundsInScreen.equals(other.mBoundsInScreen)) {
return true;
}
if (mLayer != other.mLayer) {