mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-15 22:46:10 +00:00
Remove unnecessary keyword
This commit is contained in:
parent
daa1814bf3
commit
422f26fe6b
@ -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() &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user