Mark AD-SAL interfaces as deprecated
[controller.git] / opendaylight / adsal / sal / api / src / main / java / org / opendaylight / controller / sal / utils / FilterIterator.java
index cdd8607b9928311851221d42f0b47c43d48f795b..d0de0be0487619fc1c17419aef4aa8dc4f24ff9d 100644 (file)
@@ -40,6 +40,7 @@ import java.util.NoSuchElementException;
  * An iterator that will filter values from an iterator and return only those
  * values that match the predicate.
  */
+@Deprecated
 public abstract class FilterIterator<T> implements Iterator<T> {
     protected Iterator<T> subIterator;
     protected T next;