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:
demasterr 2019-03-11 16:03:48 +01:00 committed by yoksnod
parent 861988d636
commit 2cd8fa31d4

View file

@ -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