[COLLECTIONS-777] Migrate to JUnit 5
Remove redundant constructors
This commit is contained in:
parent
47a0c8cd61
commit
a40650c56b
|
@ -51,10 +51,6 @@ public class DualTreeBidiMap2Test<K extends Comparable<K>, V extends Comparable<
|
|||
}
|
||||
}
|
||||
|
||||
public DualTreeBidiMap2Test() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCompatibilityVersion() {
|
||||
return "4.Test2";
|
||||
|
|
|
@ -21,10 +21,6 @@ package org.apache.commons.collections4.bidimap;
|
|||
*/
|
||||
public class DualTreeBidiMapTest<K extends Comparable<K>, V extends Comparable<V>> extends AbstractSortedBidiMapTest<K, V> {
|
||||
|
||||
public DualTreeBidiMapTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
|
|
|
@ -32,10 +32,6 @@ import org.junit.jupiter.api.Test;
|
|||
*/
|
||||
public class UnmodifiableSortedBidiMapTest<K extends Comparable<K>, V extends Comparable<V>> extends AbstractSortedBidiMapTest<K, V> {
|
||||
|
||||
public UnmodifiableSortedBidiMapTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isAllowNullKey() {
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue