paulk-asert commented on a change in pull request #1707:
URL: https://github.com/apache/groovy/pull/1707#discussion_r838149854
##########
File path: subprojects/groovy-xml/src/main/java/groovy/xml/XmlUtil.java
##########
@@ -495,6 +563,13 @@ private static void setIndent(TransformerFactory factory,
int indent) {
}
}
+ public static void setFeatureQuietly(TransformerFactory factory, String
feature, boolean value) {
+ try {
+ factory.setFeature(feature, value);
+ }
+ catch (TransformerConfigurationException ignored) { }
Review comment:
@sonatype-lift ignore
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]