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
@@ -30,7 +30,7 @@ public class ReadOnlyCollection<T> implements IReadOnlyCollection<T>
private final Collection<T> c;
public ReadOnlyCollection( Collection<T> in )
public ReadOnlyCollection( final Collection<T> in )
{
this.c = in;
}
@@ -54,7 +54,7 @@ public class ReadOnlyCollection<T> implements IReadOnlyCollection<T>
}
@Override
public boolean contains( Object node )
public boolean contains( final Object node )
{
return this.c.contains( node );
}