forked from organicmaps/organicmaps
Removed identical check in equals
Changes: * In CatalogTag.java the equals method contained to identical evaluations of equals with an OR. Here I assumed the `mId` to be unique and, therefore, no more checks are required. Alternatively the `mLocalizedName` could be included in the equality, as well as the `mColor`.
This commit is contained in:
parent
861988d636
commit
2cd8fa31d4
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public class CatalogTag implements Parcelable
|
|||
if (this == o) return true;
|
||||
if (o == null || getClass() != o.getClass()) return false;
|
||||
CatalogTag that = (CatalogTag) o;
|
||||
return mId.equals(that.mId) || mId.equals(that.mId);
|
||||
return mId.equals(that.mId);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue