Extract ++ and -- from expressions

This commit is contained in:
thatsIch
2015-03-26 11:07:26 +01:00
parent b31f2df58d
commit 9bf8b4388f
26 changed files with 89 additions and 40 deletions
@@ -39,7 +39,9 @@ public class ChainedIterator<T> implements Iterator<T>
@Override
public T next()
{
return this.list[this.offset++];
T result = this.list[this.offset];
this.offset++;
return result;
}
@Override