Skip to content

Commit

Permalink
style: final changes according to linter
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenbunu committed Apr 8, 2024
1 parent ba602df commit ac74e9d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/src/test/kotlin/trees/abstractTree/TestTree.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ class TestTree<K, V> : AbstractBinarySearchTree<K, V, SimpleBSTVertex<K, V>> {
): Int {
return super.compareKeys(firstKey, secondKey)
}

constructor (root: SimpleBSTVertex<K, V>, size: Long, comparator: Comparator<K>? = null) :
super(comparator) {
this.root = root
this.size = size
}
this.root = root
this.size = size
}

constructor (removeShouldReturns: V?) : super() {
this.removeShouldReturns = removeShouldReturns
Expand Down

0 comments on commit ac74e9d

Please sign in to comment.