Skip to content

Commit

Permalink
fix(plugins) fix XMLFileInputReader should not set schema name
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed Aug 18, 2020
1 parent 75febd4 commit 67bf86b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ private static class Node2StructConverter {
private static TypedStruct convertNodeObjectTree(final Node node) {
Objects.requireNonNull(node, "node cannot be null");

TypedStruct container = TypedStruct.create(determineNodeName(node));
TypedStruct container = TypedStruct.create();
readAllNodeAttributes(node, container);
for (Node child = node.getFirstChild(); child != null; child = child.getNextSibling()) {
Optional<?> optional = readNodeObject(child);
Expand Down

0 comments on commit 67bf86b

Please sign in to comment.