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 2018/07/19 19:54:37 UTC

svn commit: r1836300 - /uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/SelectFSs.java

Author: schor
Date: Thu Jul 19 19:54:37 2018
New Revision: 1836300

URL: http://svn.apache.org/viewvc?rev=1836300&view=rev
Log:
no Jira, fix javadocs

Modified:
    uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/SelectFSs.java

Modified: uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/SelectFSs.java
URL: http://svn.apache.org/viewvc/uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/SelectFSs.java?rev=1836300&r1=1836299&r2=1836300&view=diff
==============================================================================
--- uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/SelectFSs.java (original)
+++ uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/SelectFSs.java Thu Jul 19 19:54:37 2018
@@ -431,13 +431,11 @@ public interface SelectFSs<T extends Fea
   FSIterator<T> fsIterator();
 //  Iterator<T> iterator();  // inherited, not needed here
   /**
-   * @param <N> the generic type argument of the elements of the list
    * @return a List object whose elements represent the selection.
    */
   List<T> asList();
   /**
    * @param clazz the class of the type of the elements
-   * @param <N> the generic type argument of the elements of the array
    * @return a Array object representation of the elements of the selection.
    */
    T[] asArray(Class<? super T> clazz);