[#4955] Blank out
This commit is contained in:
parent
0d5034c496
commit
e2ecff6a6f
@ -1670,13 +1670,15 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
|
||||
for (Field<?> field : r.getUDT().fields())
|
||||
typeMap(field.getType(), configuration, result);
|
||||
}
|
||||
else if (ArrayRecord.class.isAssignableFrom(type)) {
|
||||
Class<ArrayRecord<?>> t = (Class<ArrayRecord<?>>) type;
|
||||
result.put(Utils.getMappedArrayName(configuration, t), t);
|
||||
ArrayRecord<?> r = t.newInstance();
|
||||
Class<?> e = r.getDataType().getType();
|
||||
typeMap(e, configuration, result);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
catch (Exception e) {
|
||||
throw new MappingException("Error while collecting type map", e);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user