[COLLECTIONS-777] Migrate to JUnit 5

Remove redundant constructors
This commit is contained in:
Gary Gregory 2024-11-11 10:25:32 -05:00
parent 47a0c8cd61
commit a40650c56b
3 changed files with 0 additions and 12 deletions

View File

@ -51,10 +51,6 @@ public class DualTreeBidiMap2Test<K extends Comparable<K>, V extends Comparable<
}
}
public DualTreeBidiMap2Test() {
super();
}
@Override
public String getCompatibilityVersion() {
return "4.Test2";

View File

@ -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}
*/

View File

@ -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;