Skip to content

Commit a40650c

Browse files
committed
[COLLECTIONS-777] Migrate to JUnit 5
Remove redundant constructors
1 parent 47a0c8c commit a40650c

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

src/test/java/org/apache/commons/collections4/bidimap/DualTreeBidiMap2Test.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@ public int compare(final Integer o1, final Integer o2) {
5151
}
5252
}
5353

54-
public DualTreeBidiMap2Test() {
55-
super();
56-
}
57-
5854
@Override
5955
public String getCompatibilityVersion() {
6056
return "4.Test2";

src/test/java/org/apache/commons/collections4/bidimap/DualTreeBidiMapTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@
2121
*/
2222
public class DualTreeBidiMapTest<K extends Comparable<K>, V extends Comparable<V>> extends AbstractSortedBidiMapTest<K, V> {
2323

24-
public DualTreeBidiMapTest() {
25-
super();
26-
}
27-
2824
/**
2925
* {@inheritDoc}
3026
*/

src/test/java/org/apache/commons/collections4/bidimap/UnmodifiableSortedBidiMapTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@
3232
*/
3333
public class UnmodifiableSortedBidiMapTest<K extends Comparable<K>, V extends Comparable<V>> extends AbstractSortedBidiMapTest<K, V> {
3434

35-
public UnmodifiableSortedBidiMapTest() {
36-
super();
37-
}
38-
3935
@Override
4036
public boolean isAllowNullKey() {
4137
return false;

0 commit comments

Comments
 (0)