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 2013/04/23 21:18:20 UTC

svn commit: r1471104 - /uima/sandbox/uimafit/trunk/uimafit/src/main/java/org/apache/uima/fit/util/ContainmentIndex.java

Author: rec
Date: Tue Apr 23 19:18:19 2013
New Revision: 1471104

URL: http://svn.apache.org/r1471104
Log:
[UIMA-2785] Make constructor of ContainmentIndex protected 
https://issues.apache.org/jira/browse/UIMA-2785

Modified:
    uima/sandbox/uimafit/trunk/uimafit/src/main/java/org/apache/uima/fit/util/ContainmentIndex.java

Modified: uima/sandbox/uimafit/trunk/uimafit/src/main/java/org/apache/uima/fit/util/ContainmentIndex.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uimafit/trunk/uimafit/src/main/java/org/apache/uima/fit/util/ContainmentIndex.java?rev=1471104&r1=1471103&r2=1471104&view=diff
==============================================================================
--- uima/sandbox/uimafit/trunk/uimafit/src/main/java/org/apache/uima/fit/util/ContainmentIndex.java (original)
+++ uima/sandbox/uimafit/trunk/uimafit/src/main/java/org/apache/uima/fit/util/ContainmentIndex.java Tue Apr 23 19:18:19 2013
@@ -64,7 +64,7 @@ public class ContainmentIndex<S extends 
    * @param aType
    *          the indexing strategy.
    */
-  public ContainmentIndex(CAS cas, org.apache.uima.cas.Type aSuper,
+  protected ContainmentIndex(CAS cas, org.apache.uima.cas.Type aSuper,
           org.apache.uima.cas.Type aUnder, Type aType) {
     Collection<AnnotationFS> over = select(cas, aSuper);
     for (AnnotationFS s : over) {