final variables and parameters
This commit is contained in:
@@ -30,7 +30,7 @@ public final class ProxyNodeIterator implements Iterator<IGridNode>
|
||||
{
|
||||
private final Iterator<IGridHost> hosts;
|
||||
|
||||
public ProxyNodeIterator( Iterator<IGridHost> hosts )
|
||||
public ProxyNodeIterator( final Iterator<IGridHost> hosts )
|
||||
{
|
||||
this.hosts = hosts;
|
||||
}
|
||||
@@ -44,7 +44,7 @@ public final class ProxyNodeIterator implements Iterator<IGridNode>
|
||||
@Override
|
||||
public IGridNode next()
|
||||
{
|
||||
IGridHost host = this.hosts.next();
|
||||
final IGridHost host = this.hosts.next();
|
||||
return host.getGridNode( AEPartLocation.INTERNAL );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user