diff --git a/playground/java/src/org/broadinstitute/sting/utils/EndlessIterator.java b/playground/java/src/org/broadinstitute/sting/utils/EndlessIterator.java deleted file mode 100755 index 03df4fecd..000000000 --- a/playground/java/src/org/broadinstitute/sting/utils/EndlessIterator.java +++ /dev/null @@ -1,30 +0,0 @@ -package org.broadinstitute.sting.utils; - -import java.util.Iterator; - -/** - * Created by IntelliJ IDEA. - * User: depristo - * Date: Feb 24, 2009 - * Time: 10:24:38 AM - * To change this template use File | Settings | File Templates. - */ -public class EndlessIterator implements Iterator { - private T value; - - public EndlessIterator(T value) { - this.value = value; - } - - public boolean hasNext() { - return true; - } - - public T next() { - return this.value; - } - - public void remove () { - throw new UnsupportedOperationException(); - } -} \ No newline at end of file