Skip to content

Commit

Permalink
[COLLECTIONS-777] Migrate to JUnit 5
Browse files Browse the repository at this point in the history
Remove redundant constructors
  • Loading branch information
garydgregory committed Nov 11, 2024
1 parent 47a0c8c commit a40650c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ public int compare(final Integer o1, final Integer o2) {
}
}

public DualTreeBidiMap2Test() {
super();
}

@Override
public String getCompatibilityVersion() {
return "4.Test2";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@
*/
public class DualTreeBidiMapTest<K extends Comparable<K>, V extends Comparable<V>> extends AbstractSortedBidiMapTest<K, V> {

public DualTreeBidiMapTest() {
super();
}

/**
* {@inheritDoc}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@
*/
public class UnmodifiableSortedBidiMapTest<K extends Comparable<K>, V extends Comparable<V>> extends AbstractSortedBidiMapTest<K, V> {

public UnmodifiableSortedBidiMapTest() {
super();
}

@Override
public boolean isAllowNullKey() {
return false;
Expand Down

0 comments on commit a40650c

Please sign in to comment.