From 4242dba29511b2a8aff184557fe80416858953fd Mon Sep 17 00:00:00 2001 From: hanna Date: Wed, 18 Mar 2009 23:53:40 +0000 Subject: [PATCH] Remove endless iterator. git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@97 348d0f76-0448-11de-a6fe-93d51630548a --- .../sting/utils/EndlessIterator.java | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100755 playground/java/src/org/broadinstitute/sting/utils/EndlessIterator.java 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