mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-27 08:38:13 -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
|
override val isMaven = true
|
||||||
|
|
||||||
private fun toId(a: Artifact) = with(a) {
|
private fun toId(a: Artifact) = a.toString()
|
||||||
groupId + ":" + artifactId + ":" + version
|
|
||||||
}
|
|
||||||
|
|
||||||
override val jarFile: Future<File>
|
override val jarFile: Future<File>
|
||||||
get() = if (artifact.file != null) {
|
get() = if (artifact.file != null) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue