am ea57b592: am 1773ded8: Merge "Fixed key comparison in equals method" into mnc-dev

* commit 'ea57b59222571e7e82d8b628e86b4ff0bdbe3f49':
  Fixed key comparison in equals method
This commit is contained in:
Fyodor Kupolov
2015-08-20 20:02:42 +00:00
committed by Android Git Automerger

View File

@@ -456,7 +456,7 @@ public class RestrictionEntry implements Parcelable {
if (o == this) return true;
if (!(o instanceof RestrictionEntry)) return false;
final RestrictionEntry other = (RestrictionEntry) o;
if (mType != other.mType || mKey.equals(other.mKey)) {
if (mType != other.mType || !mKey.equals(other.mKey)) {
return false;
}
if (mCurrentValues == null && other.mCurrentValues == null