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
The following commit(s) were added to refs/heads/master by this push: new 474de2bb1 [COLLECTIONS-777] Migrate to JUnit 5 474de2bb1 is described below commit 474de2bb1f4d4e6c1e5d8fd36e09a5371e9749d8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Nov 11 09:30:47 2024 -0500 [COLLECTIONS-777] Migrate to JUnit 5 Remove unused interface --- src/test/java/org/apache/commons/collections4/BulkTest.java | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/test/java/org/apache/commons/collections4/BulkTest.java b/src/test/java/org/apache/commons/collections4/BulkTest.java index 105b47183..113fb2bef 100644 --- a/src/test/java/org/apache/commons/collections4/BulkTest.java +++ b/src/test/java/org/apache/commons/collections4/BulkTest.java @@ -19,7 +19,7 @@ package org.apache.commons.collections4; /** * This class is left over from the JUnit 3 implementation. */ -public class BulkTest implements Cloneable { +public class BulkTest { // Note: BulkTest is Cloneable to make it easier to construct // BulkTest instances for simple test methods that are defined in @@ -57,16 +57,6 @@ public class BulkTest implements Cloneable { this.verboseName = getClass().getName(); } - /** - * Creates a clone of this {@code BulkTest}. - * - * @return a clone of this {@code BulkTest} - */ - @Override - public Object clone() throws CloneNotSupportedException { - return super.clone(); - } - /** * Returns the name of the simple test method of this {@code BulkTest}. *