1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00
This commit is contained in:
Cedric Beust 2016-02-28 11:41:00 -08:00
parent c236b0b070
commit 66c349121c

View file

@ -91,7 +91,7 @@ public class DependencyManager @Inject constructor(val executors: KobaltExecutor
for (k in map.keySet()) {
val l = map.get(k)
Collections.sort(l, Collections.reverseOrder())
result.add(l.get(0))
result.add(l[0])
}
return result
}