Renaming artifact and packages
[scannotation] / src / main / java / org / scannotation / classpath / StreamIterator.java
diff --git a/src/main/java/org/scannotation/classpath/StreamIterator.java b/src/main/java/org/scannotation/classpath/StreamIterator.java
deleted file mode 100644 (file)
index 410df8f..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package org.scannotation.classpath;
-
-import java.io.InputStream;
-
-/**
- * Simpler iterator than java.util.iterator.  Things like JarInputStream does not allow you to implement hasNext()
- *
- * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
- * @version $Revision: 1 $
- */
-public interface StreamIterator
-{
-   /**
-    * User is resposible for closing the InputStream returned
-    *
-    * @return null if no more streams left to iterate on
-    */
-   InputStream next();
-
-   /**
-    * Cleanup any open resources of the iterator
-    *
-    */
-   void close();
-}