You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2019/12/04 15:50:40 UTC

[uima-uimaj] branch master updated: [UIMA-5536] document in code the Jira this update did

This is an automated email from the ASF dual-hosted git repository.

schor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git


The following commit(s) were added to refs/heads/master by this push:
     new b196f27  [UIMA-5536] document in code the Jira this update did
b196f27 is described below

commit b196f27b3e2dbaa140261bd7c967847111954d76
Author: Marshall Schor <ms...@schor.com>
AuthorDate: Wed Dec 4 10:50:24 2019 -0500

    [UIMA-5536] document in code the Jira this update did
---
 .../src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java   | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/uimaj-core/src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java b/uimaj-core/src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java
index 690577a..f5a580c 100644
--- a/uimaj-core/src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java
+++ b/uimaj-core/src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java
@@ -112,7 +112,7 @@ public class SelectFSs_impl <T extends FeatureStructure> implements SelectFSs<T>
   private FSList  sourceFSList  = null;  // alternate source
   
   private boolean isTypePriority = false;
-//  private boolean isPositionUsesType = false;
+//  private boolean isPositionUsesType = false; // REMOVED see https://issues.apache.org/jira/browse/UIMA-5536 
   private boolean isSkipSameBeginEndType = false; // for boundsUse only
   private boolean isNonOverlapping = IS_UNAMBIGUOUS;
   private boolean isIncludeAnnotBeyondBounds = false;
@@ -229,6 +229,7 @@ public class SelectFSs_impl <T extends FeatureStructure> implements SelectFSs<T>
    * boolean operations
    *********************************/
   
+  // REMOVED see https://issues.apache.org/jira/browse/UIMA-5536
 //  /* (non-Javadoc)
 //   * @see org.apache.uima.cas.SelectFSs#positionUsesType()
 //   */
@@ -493,7 +494,7 @@ public class SelectFSs_impl <T extends FeatureStructure> implements SelectFSs<T>
     final boolean isUseAnnotationIndex = 
         ((index != null) && (index instanceof AnnotationIndex)) ||
         isNonOverlapping ||
-//        isPositionUsesType ||
+//        isPositionUsesType ||  REMOVED see https://issues.apache.org/jira/browse/UIMA-5536
         isTypePriority ||
         isIncludeAnnotBeyondBounds || 
         boundsUse != BoundsUse.notBounded ||
@@ -502,7 +503,7 @@ public class SelectFSs_impl <T extends FeatureStructure> implements SelectFSs<T>
     if (isUseAnnotationIndex) {
       forceAnnotationIndex();  // throws if non-null index not an annotation index
     }
-    
+    // REMOVED see https://issues.apache.org/jira/browse/UIMA-5536
 //    if (isTypePriority) {
 //      isPositionUsesType = true;
 //    }
@@ -1157,7 +1158,7 @@ public class SelectFSs_impl <T extends FeatureStructure> implements SelectFSs<T>
    * special processing for AnnotationIndex (only):
    *   - typePriority - use or ignore
    *     -- ignored: after moveTo(fs), moveToPrevious while begin and end ==
-   *       --- and if isPositionUsesType types are == 
+   *       // REMOVED see https://issues.apache.org/jira/browse/UIMA-5536 --- and if isPositionUsesType types are == 
    * @param it iterator to position
    * @return it positioned if needed
    */