Remove endless iterator.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@97 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
hanna 2009-03-18 23:53:40 +00:00
parent 225ea64bd9
commit 4242dba295
1 changed files with 0 additions and 30 deletions

View File

@ -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<T> implements Iterator<T> {
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();
}
}