Skip to content

Commit 5fe1ca4

Browse files
author
Rustam Sadykov
committed
fix jdk path providing
1 parent 560c245 commit 5fe1ca4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utbot-junit-contest/src/main/kotlin/org/utbot/monitoring/StatisticsMonitoring.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import mu.KotlinLogging
66
import org.utbot.common.ThreadBasedExecutor
77
import org.utbot.common.bracket
88
import org.utbot.common.info
9-
import org.utbot.contest.ContestEstimatorJdkPathProvider
9+
import org.utbot.contest.ContestEstimatorJdkInfoProvider
1010
import org.utbot.contest.GlobalStats
1111
import org.utbot.contest.Paths
1212
import org.utbot.contest.Tool
1313
import org.utbot.contest.runEstimator
14-
import org.utbot.framework.JdkPathService
14+
import org.utbot.framework.plugin.services.JdkInfoService
1515
import org.utbot.instrumentation.ConcreteExecutor
1616
import kotlin.system.exitProcess
1717

@@ -44,7 +44,7 @@ fun main(args: Array<String>) {
4444

4545
val statistics = mutableListOf<GlobalStats>()
4646

47-
JdkPathService.jdkPathProvider = ContestEstimatorJdkPathProvider(javaHome)
47+
JdkInfoService.jdkInfoProvider = ContestEstimatorJdkInfoProvider(javaHome)
4848
val executor = ThreadBasedExecutor()
4949

5050
repeat(runTries) { idx ->

0 commit comments

Comments
 (0)