* commit '78985f3fb5b424d3d4010cbe83ac85c4ea4b7fc6': Fixed key comparison in equals method
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user