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

Clarify error message.

This commit is contained in:
Cedric Beust 2017-02-27 16:08:03 -08:00
parent a35cf0cc87
commit ce32785de7

View file

@ -30,7 +30,7 @@ class JavaPlugin @Inject constructor(val javaCompiler: JavaCompiler, override va
if (info.sourceFiles.isNotEmpty()) { if (info.sourceFiles.isNotEmpty()) {
javaCompiler.javadoc(project, context, info) javaCompiler.javadoc(project, context, info)
} else { } else {
warn("Couldn't find any source files to run Javadoc on") warn("Couldn't find any source files to run Javadoc on for suffixes " + info.suffixesBeingCompiled)
TaskResult() TaskResult()
} }
return result return result