From ac74e9d2d524936d32b666900a6fd05b1bd2a9cb Mon Sep 17 00:00:00 2001 From: Kostya Date: Mon, 8 Apr 2024 09:33:15 +0300 Subject: [PATCH] style: final changes according to linter --- lib/src/test/kotlin/trees/abstractTree/TestTree.kt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/src/test/kotlin/trees/abstractTree/TestTree.kt b/lib/src/test/kotlin/trees/abstractTree/TestTree.kt index 578bb8d..9974358 100644 --- a/lib/src/test/kotlin/trees/abstractTree/TestTree.kt +++ b/lib/src/test/kotlin/trees/abstractTree/TestTree.kt @@ -26,11 +26,12 @@ class TestTree : AbstractBinarySearchTree> { ): Int { return super.compareKeys(firstKey, secondKey) } + constructor (root: SimpleBSTVertex, size: Long, comparator: Comparator? = null) : super(comparator) { - this.root = root - this.size = size - } + this.root = root + this.size = size + } constructor (removeShouldReturns: V?) : super() { this.removeShouldReturns = removeShouldReturns