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

Jersey work.

This commit is contained in:
Cedric Beust 2016-04-27 03:11:33 -08:00
parent 85db1c767e
commit 8b9f2d9655
7 changed files with 196 additions and 67 deletions

View file

@ -16,7 +16,7 @@ enum class SourceSet(val outputDir: String) {
companion object {
fun of(isTest: Boolean) = if (isTest) TEST else MAIN
private fun unknown(sourceSet: SourceSet) = throw KobaltException("Unknown source set: $sourceSet")
private fun unknown(sourceSet: SourceSet) : Nothing = throw KobaltException("Unknown source set: $sourceSet")
}
}