You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2010/08/26 02:20:40 UTC

svn commit: r989410 - /lucene/dev/trunk/solr/src/java/org/apache/solr/util/PrimUtils.java

Author: yonik
Date: Thu Aug 26 00:20:39 2010
New Revision: 989410

URL: http://svn.apache.org/viewvc?rev=989410&view=rev
Log:
javadoc

Modified:
    lucene/dev/trunk/solr/src/java/org/apache/solr/util/PrimUtils.java

Modified: lucene/dev/trunk/solr/src/java/org/apache/solr/util/PrimUtils.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/src/java/org/apache/solr/util/PrimUtils.java?rev=989410&r1=989409&r2=989410&view=diff
==============================================================================
--- lucene/dev/trunk/solr/src/java/org/apache/solr/util/PrimUtils.java (original)
+++ lucene/dev/trunk/solr/src/java/org/apache/solr/util/PrimUtils.java Thu Aug 26 00:20:39 2010
@@ -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