Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0.0
-
None
Description
ArtifactRepositoryImpl.SERVICE_RANK_COMPARATOR, line 542
is: rank1 = (rankObject2 == null) ? 0 : ((Integer) rankObject2).intValue();
must be: rank2 = (rankObject2 == null) ? 0 : ((Integer) rankObject2).intValue();