Skip to content
Snippets Groups Projects
Commit b1c1d4bc authored by brinn's avatar brinn
Browse files

minor: use new-style for loop

SVN: 1870
parent c5ac7e2f
No related branches found
No related tags found
No related merge requests found
......@@ -118,9 +118,9 @@ public class DataMover
public boolean terminate()
{
boolean ok = true;
for (int i = 0; i < terminables.length; i++)
for (ITerminable terminable : terminables)
{
ok = ok && terminables[i].terminate();
ok = ok && terminable.terminate();
}
return ok;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment