Remove unnecessary keyword

This commit is contained in:
Gary Gregory 2024-06-23 14:18:06 -04:00
parent daa1814bf3
commit 422f26fe6b

View File

@ -48,7 +48,7 @@ public abstract class AbstractMultiSet<E> extends AbstractCollection<E> implemen
public boolean equals(final Object object) {
if (object instanceof Entry) {
final Entry<?> other = (Entry<?>) object;
final E element = this.getElement();
final E element = getElement();
final Object otherElement = other.getElement();
return this.getCount() == other.getCount() &&