1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Unused log functions.

This commit is contained in:
Cedric Beust 2015-10-15 02:58:08 -07:00
parent 5545d8e41b
commit 6c1afbfd99
2 changed files with 15 additions and 46 deletions

View file

@ -3,6 +3,7 @@ package com.beust.kobalt.internal
import com.beust.kobalt.maven.KobaltException
import com.beust.kobalt.misc.KobaltLogger
import com.beust.kobalt.misc.Topological
import com.beust.kobalt.misc.log
import javafx.concurrent.Worker
import org.testng.Assert
import org.testng.annotations.Test
@ -34,7 +35,7 @@ public class DynamicGraphTest {
override val priority = 0
override fun call() : TaskResult2<T> {
KobaltLogger.log(2, "Running node $n")
log(2, "Running node $n")
runNodes.add(n)
return TaskResult2(errorFunction(n), n)
}