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

Formatting.

This commit is contained in:
Cedric Beust 2016-07-20 02:04:07 -08:00
parent 9d3665fe17
commit 29dc3dd466

View file

@ -146,11 +146,11 @@ class JarGenerator @Inject constructor(val dependencyManager: DependencyManager)
val manifestFile = findManifestFile(project, includedFiles)
if (manifestFile != null) {
log(2, "Including MANIFEST.MF file $manifestFile")
Manifest(FileInputStream(manifestFile))
} else {
Manifest()
}
log(2, "Including MANIFEST.MF file $manifestFile")
Manifest(FileInputStream(manifestFile))
} else {
Manifest()
}
}
val jarFactory = { os: OutputStream -> JarOutputStream(os, manifest) }