From b06ce2628f13ce8468adac86b202896a9734da55 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Sun, 28 Feb 2016 11:40:44 -0800 Subject: [PATCH] Not needed. --- .../main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt index 89eed3d2..f5656e88 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt @@ -291,9 +291,6 @@ open class JvmCompilerPlugin @Inject constructor( ! KFiles.isResource(it.path) }.distinct() - if (allSourceDirectories.any { KFiles.isResource(it.path) }) { - println("PROBLEM") - } // Now that we have all the source directories, find all the source files in them val sourceFiles = files.findRecursively(projectDirectory, allSourceDirectories, { file -> sourceSuffixes.any { file.endsWith(it) }})