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

Not necessary.

This commit is contained in:
Cedric Beust 2015-11-08 20:30:25 -08:00
parent 80bb4b4b6b
commit 3ed773ebcb

View file

@ -19,6 +19,6 @@ open public class UnversionedDep(open val groupId: String, open val artifactId:
public fun toDirectory(v: String, fileSystem: Boolean = true): String {
val sep = if (fileSystem) File.separator else "/"
val l = listOf(groupId.replace(".", sep), artifactId, v)
return Strings.Companion.join(sep, l) + "/"
return Strings.Companion.join(sep, l)
}
}