mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Fix toId().
This commit is contained in:
parent
5efd0b855d
commit
80774086f1
1 changed files with 1 additions and 3 deletions
|
@ -188,9 +188,7 @@ class AetherDependency(val artifact: Artifact): IClasspathDependency, Comparable
|
|||
|
||||
override val isMaven = true
|
||||
|
||||
private fun toId(a: Artifact) = with(a) {
|
||||
groupId + ":" + artifactId + ":" + version
|
||||
}
|
||||
private fun toId(a: Artifact) = a.toString()
|
||||
|
||||
override val jarFile: Future<File>
|
||||
get() = if (artifact.file != null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue