You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by cl...@apache.org on 2013/02/11 20:35:43 UTC

svn commit: r1444936 - /jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/util/iterator/UniqueExtendedIterator.java

Author: claude
Date: Mon Feb 11 19:35:43 2013
New Revision: 1444936

URL: http://svn.apache.org/r1444936
Log:
JENA-393
Undeprecated UniqueExtendedIterator

Modified:
    jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/util/iterator/UniqueExtendedIterator.java

Modified: jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/util/iterator/UniqueExtendedIterator.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/util/iterator/UniqueExtendedIterator.java?rev=1444936&r1=1444935&r2=1444936&view=diff
==============================================================================
--- jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/util/iterator/UniqueExtendedIterator.java (original)
+++ jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/util/iterator/UniqueExtendedIterator.java Mon Feb 11 19:35:43 2013
@@ -25,10 +25,12 @@ import java.util.*;
  * duplicate values. There is one complication that the value
  * which filtering is done on might not be the actual value
  * to be returned by the iterator. 
- * @deprecated For simple filtering use <code>UniqueFilter</code> for 
+ * <p>
+ * This class may be deprecated in the future.  New development should 
+ * use use <code>UniqueFilter</code> for simple filtering of an ExtendedIterator, for 
  * more complex filtering implement a custom <code>Filter</code>.
  */
-@Deprecated
+
 public class UniqueExtendedIterator<T> extends WrappedIterator<T> {
 
     /** The set of objects already seen */