diff --git a/solr/src/java/org/apache/solr/util/PrimUtils.java b/solr/src/java/org/apache/solr/util/PrimUtils.java index 299fdbd9649..11580c0d098 100644 --- a/solr/src/java/org/apache/solr/util/PrimUtils.java +++ b/solr/src/java/org/apache/solr/util/PrimUtils.java @@ -31,6 +31,7 @@ public class PrimUtils { /** Sort the integer array from "start" inclusive to "end" exclusive in ascending order, * using the provided comparator. + * TODO: is this an unstable sort? */ public static void sort(int start, int end, int[] array, IntComparator comparator) { // This code was copied from Apache Harmony's Arrays.sort(double[]) and modified