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

* commit '345a8f69ea2acd6d3ecf4c200cb33e8037f8798c':
  Frameworks/base: Fix a comparison
This commit is contained in:
Andreas Gampe
2015-03-17 00:25:04 +00:00
committed by Android Git Automerger

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) {