final variables and parameters

This commit is contained in:
thatsIch
2015-09-30 14:24:40 +02:00
parent 059523f543
commit 8b3a954f73
732 changed files with 9253 additions and 9256 deletions
@@ -28,7 +28,7 @@ public final class ChainedIterator<T> implements Iterator<T>
private int offset = 0;
public ChainedIterator( T... list )
public ChainedIterator( final T... list )
{
this.list = list;
}
@@ -42,7 +42,7 @@ public final class ChainedIterator<T> implements Iterator<T>
@Override
public T next()
{
T result = this.list[this.offset];
final T result = this.list[this.offset];
this.offset++;
return result;
}