mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Sort version in decreasing order
This commit is contained in:
parent
e7f18f141f
commit
bb304db6a2
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ public class Helium {
|
|||
Collections.sort(packages, new Comparator<HeliumPackageSearchResult>() {
|
||||
@Override
|
||||
public int compare(HeliumPackageSearchResult o1, HeliumPackageSearchResult o2) {
|
||||
return o1.getPkg().getArtifact().compareTo(o2.getPkg().getArtifact());
|
||||
return o2.getPkg().getArtifact().compareTo(o1.getPkg().getArtifact());
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue