You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2014/01/21 02:57:11 UTC

svn commit: r1559899 - in /uima/uimafit/trunk: ./ uimafit-core/src/main/java/org/apache/uima/fit/factory/FsIndexFactory.java

Author: rec
Date: Tue Jan 21 01:57:11 2014
New Revision: 1559899

URL: http://svn.apache.org/r1559899
Log:
[UIMA-3564] FsIndexFactory.REVERSE_STANDARD_COMPARE maps to STANDARD_COMPARE

Modified:
    uima/uimafit/trunk/   (props changed)
    uima/uimafit/trunk/uimafit-core/src/main/java/org/apache/uima/fit/factory/FsIndexFactory.java

Propchange: uima/uimafit/trunk/
------------------------------------------------------------------------------
  Merged /uima/uimafit/branches/2.0.x:r1559867

Modified: uima/uimafit/trunk/uimafit-core/src/main/java/org/apache/uima/fit/factory/FsIndexFactory.java
URL: http://svn.apache.org/viewvc/uima/uimafit/trunk/uimafit-core/src/main/java/org/apache/uima/fit/factory/FsIndexFactory.java?rev=1559899&r1=1559898&r2=1559899&view=diff
==============================================================================
--- uima/uimafit/trunk/uimafit-core/src/main/java/org/apache/uima/fit/factory/FsIndexFactory.java (original)
+++ uima/uimafit/trunk/uimafit-core/src/main/java/org/apache/uima/fit/factory/FsIndexFactory.java Tue Jan 21 01:57:11 2014
@@ -55,9 +55,9 @@ public final class FsIndexFactory {
 
   /**
    * Comparator that orders FeatureStructures according to the reverse order of their key features
-   * (the opposite order as that defined by STANDARD_COMPARE.
+   * (the opposite order as that defined by STANDARD_COMPARE).
    */
-  public static final int REVERSE_STANDARD_COMPARE = FsIndexKeyDescription.STANDARD_COMPARE;
+  public static final int REVERSE_STANDARD_COMPARE = FsIndexKeyDescription.REVERSE_STANDARD_COMPARE;
 
   private static final Object SCAN_LOCK = new Object();