Skip to content

Commit

Permalink
fix bug for YangDataDocumentJsonCodec.java
Browse files Browse the repository at this point in the history
  • Loading branch information
lllyfeng committed Aug 13, 2024
1 parent f33b905 commit 7696f8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public YangDataDocument deserialize(JsonNode element, ValidatorResultBuilder val
}
YangDataDocument yangDataDocument = new YangDataDocumentImpl(qName, yangSchemaContext);

validatorResultBuilder.merge(JsonCodecUtil.buildChildrenData(yangDataDocument, element));
validatorResultBuilder.merge(JsonCodecUtil.buildChildrenData(yangDataDocument, element.get(field)));
return yangDataDocument;
}

Expand Down

0 comments on commit 7696f8e

Please sign in to comment.