From 7b68f9d980429c7491ae6c70e3b1e8f6b3efc0f4 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Sun, 29 Nov 2015 14:19:13 -0800 Subject: [PATCH] Warning. --- src/main/kotlin/com/beust/kobalt/Main.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/beust/kobalt/Main.kt b/src/main/kotlin/com/beust/kobalt/Main.kt index 8fca75ee..65ca6490 100644 --- a/src/main/kotlin/com/beust/kobalt/Main.kt +++ b/src/main/kotlin/com/beust/kobalt/Main.kt @@ -166,7 +166,7 @@ private class Main @Inject constructor( // // Run all their dependencies through the IDependencyInterceptors // - runClasspathInterceptors(allProjects, pluginInfo) + runClasspathInterceptors(allProjects) log(2, "Final list of repos:\n " + Kobalt.repos.joinToString("\n ")) @@ -210,7 +210,7 @@ private class Main @Inject constructor( return result } - private fun runClasspathInterceptors(allProjects: List, pluginInfo: PluginInfo) { + private fun runClasspathInterceptors(allProjects: List) { allProjects.forEach { runClasspathInterceptors(it.compileDependencies) runClasspathInterceptors(it.compileProvidedDependencies)