Puts everywhere brackets

This commit is contained in:
thatsIch
2015-04-29 02:30:53 +02:00
parent 23aa8fd72d
commit 64ed05a1b4
465 changed files with 6726 additions and 14 deletions
@@ -49,7 +49,9 @@ public class GridNodeCollection implements IReadOnlyCollection<IGridNode>
int size = 0;
for( Set<IGridNode> o : this.machines.values() )
{
size += o.size();
}
return size;
}
@@ -58,8 +60,12 @@ public class GridNodeCollection implements IReadOnlyCollection<IGridNode>
public boolean isEmpty()
{
for( Set<IGridNode> o : this.machines.values() )
{
if( !o.isEmpty() )
{
return false;
}
}
return true;
}