Claudenw commented on code in PR #436: URL: https://github.com/apache/creadur-rat/pull/436#discussion_r1945055126
########## apache-rat-core/src/main/java/org/apache/rat/configuration/XMLConfigurationReader.java: ########## @@ -126,6 +127,21 @@ public SortedSet<ILicenseFamily> licenseFamilies() { }; } + /** + * Creates textual representation of a node for display. + * @param node the node to create the textual representation of. + * @return The textual representation of the node for display. + */ + private String nodeText(final Node node) { + StringWriter stringWriter = new StringWriter().append("<").append(node.getNodeName()); Review Comment: @ottlinger any other changes you want or may I merge? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@creadur.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org