constructor.finish();
}
public void addOrMarkMarshallerUnlazy(final MetaClass type) {
final MappingDefinition definition = mappingContext.getDefinitionsFactory().getDefinition(type);
if (definition == null) {
unlazyMarshallers.add(type.getFullyQualifiedName());
}
else if (definition.isLazy()) {
definition.setLazy(false);
addMarshaller(type);
}
}