This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
commit 422f26fe6ba524a7e18f16d44762af66021d9091 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 23 14:18:06 2024 -0400 Remove unnecessary keyword --- .../java/org/apache/commons/collections4/multiset/AbstractMultiSet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/collections4/multiset/AbstractMultiSet.java b/src/main/java/org/apache/commons/collections4/multiset/AbstractMultiSet.java index 9d6674882..822da4a64 100644 --- a/src/main/java/org/apache/commons/collections4/multiset/AbstractMultiSet.java +++ b/src/main/java/org/apache/commons/collections4/multiset/AbstractMultiSet.java @@ -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() &&