Merge "Frameworks/base: Fix a comparison"
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user