Skip to content

Commit

Permalink
Fix formatting in JavaCompiler class (#490)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bencodes authored Apr 13, 2021
1 parent 8d98768 commit df8bc77
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ internal class JavaCompiler @Inject constructor(
*/
private val DIR_SEP = "${File.separatorChar}${File.pathSeparator}"
}
fun compile(context: CompilationTaskContext, command: JvmCompilationTask) : List<String> {

fun compile(context: CompilationTaskContext, command: JvmCompilationTask): List<String> {
val i = command.inputs
val d = command.directories
if (i.javaSourcesList.isNotEmpty()) {
Expand All @@ -58,6 +59,6 @@ internal class JavaCompiler @Inject constructor(
javacInvoker.compile(a, PrintWriter(pw))
})
}
return emptyList()
return emptyList()
}
}

0 comments on commit df8bc77

Please sign in to comment.