mirror of https://github.com/sbt/sbt.git
Replace procedure syntax by explicit Unit annotation
This commit is contained in:
parent
c4eb670588
commit
25dde24eda
|
|
@ -68,7 +68,7 @@ class ComponentCompiler(compiler: RawCompiler, manager: ComponentManager) {
|
|||
val base = id + binSeparator + compiler.scalaInstance.actualVersion
|
||||
if (withJavaVersion) base + "__" + javaVersion else base
|
||||
}
|
||||
protected def compileAndInstall(id: String, binID: String) {
|
||||
protected def compileAndInstall(id: String, binID: String): Unit = {
|
||||
val srcID = id + srcExtension
|
||||
IO.withTemporaryDirectory { binaryDirectory =>
|
||||
val targetJar = new File(binaryDirectory, id + ".jar")
|
||||
|
|
|
|||
Loading…
Reference in New Issue