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 6d4ea100ff53310fcb1f5cc6a51078e1fd3afd42 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 23 14:19:20 2024 -0400 Remove unnecessary keyword --- .../apache/commons/collections4/bag/AbstractSortedBagTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/java/org/apache/commons/collections4/bag/AbstractSortedBagTest.java b/src/test/java/org/apache/commons/collections4/bag/AbstractSortedBagTest.java index c3e27e4a7..eb49dd068 100644 --- a/src/test/java/org/apache/commons/collections4/bag/AbstractSortedBagTest.java +++ b/src/test/java/org/apache/commons/collections4/bag/AbstractSortedBagTest.java @@ -105,14 +105,14 @@ public abstract class AbstractSortedBagTest<T> extends AbstractBagTest<T> { @Override public void resetEmpty() { - this.setCollection(CollectionSortedBag.collectionSortedBag(makeObject())); - this.setConfirmed(makeConfirmedCollection()); + setCollection(CollectionSortedBag.collectionSortedBag(makeObject())); + setConfirmed(makeConfirmedCollection()); } @Override public void resetFull() { - this.setCollection(CollectionSortedBag.collectionSortedBag(makeFullCollection())); - this.setConfirmed(makeConfirmedFullCollection()); + setCollection(CollectionSortedBag.collectionSortedBag(makeFullCollection())); + setConfirmed(makeConfirmedFullCollection()); } /**