#1812 No effective change - Format code only

This commit is contained in:
rob bygrave
2019-09-11 15:33:21 +12:00
parent b329ae42db
commit c1487daea8
@@ -104,8 +104,11 @@ public class ScalarTypeArrayList extends ScalarTypeArrayBase<List> implements Sc
protected List fromArray(Object[] array1) {
List list = new ArrayList(array1.length);
for (Object element : array1) {
if(element == null ) list.add(null);
else list.add(converter.toElement(element));
if (element == null) {
list.add(null);
} else {
list.add(converter.toElement(element));
}
}
return new ModifyAwareList(list);
}