Code cleanup - move old iterator/while loops to for loops

This commit is contained in:
rbygrave
2014-07-19 19:10:13 +12:00
parent 0c4fc4eea3
commit 63e9f603ec
25 changed files with 360 additions and 524 deletions
@@ -1,7 +1,6 @@
package com.avaje.ebeaninternal.server.util;
import java.util.Collection;
import java.util.Iterator;
import javax.persistence.PersistenceException;
@@ -180,10 +179,8 @@ public class BindParamsParser {
// Chop up Collection parameter into a number
// of individual parameters and add each one individually
Collection<?> collection = (Collection<?>)inValue;
Iterator<?> it = collection.iterator();
int c = 0;
while (it.hasNext()) {
Object elVal = (Object) it.next();
for (Object elVal : collection) {
if (++c > 1){
orderedList.appendSql(",");
}