mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1812 No effective change - Format code only
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user