Skip to content

Commit

Permalink
Reverse order of sorted list
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuzion24 committed Nov 30, 2015
1 parent d55f884 commit a1ab9cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ private static List<Pair<VulnerabilityTestResult, VulnerabilityDescriptor>> buil
}

Collections.sort(res, new Comparator<Pair<VulnerabilityTestResult, VulnerabilityDescriptor>>() {
private final static int leftFirst = 1;
private final static int rightFirst = -1;
private final static int leftFirst = -1;
private final static int rightFirst = 1;
private final static int areEqual = 0;

@Override
Expand Down

0 comments on commit a1ab9cf

Please sign in to comment.