First JDK 1.5 util I'll need
July 30th, 2003 by Henpublic class IterarableIterator implements Iterable { private Iterator iter;
public IterableIterator(Iterator itr) { this.iter = iter; } public void iterator() { return this.iter } }
and live with the fact that iterator() can’t be called twice. SimpleIterator should implement Iterable.

September 16th, 2003 at 1:06 am
this just doesn’t make any sense at all…
it wouldn’t even compile, blatantly!
???