Skip to content

Commit 474de2b

Browse files
committed
[COLLECTIONS-777] Migrate to JUnit 5
Remove unused interface
1 parent b298139 commit 474de2b

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/test/java/org/apache/commons/collections4/BulkTest.java

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* This class is left over from the JUnit 3 implementation.
2121
*/
22-
public class BulkTest implements Cloneable {
22+
public class BulkTest {
2323

2424
// Note: BulkTest is Cloneable to make it easier to construct
2525
// BulkTest instances for simple test methods that are defined in
@@ -57,16 +57,6 @@ public BulkTest() {
5757
this.verboseName = getClass().getName();
5858
}
5959

60-
/**
61-
* Creates a clone of this {@code BulkTest}.
62-
*
63-
* @return a clone of this {@code BulkTest}
64-
*/
65-
@Override
66-
public Object clone() throws CloneNotSupportedException {
67-
return super.clone();
68-
}
69-
7060
/**
7161
* Returns the name of the simple test method of this {@code BulkTest}.
7262
*

0 commit comments

Comments
 (0)