mirror of
https://github.com/sbt/sbt.git
synced 2026-09-07 19:05:53 +02:00
Replace procedure syntax by explicit Unit annotation
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user