This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/commons-secure-xml.git
commit b5c4d3df58222533bbe4b8d082c00257a1723998 Author: Gary Gregory <[email protected]> AuthorDate: Wed Sep 2 07:06:59 2026 -0400 Javadoc Fix likely copy-paste error. --- .../org/apache/commons/xml/secure/SecureDocumentBuilderFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/xml/secure/SecureDocumentBuilderFactory.java b/src/main/java/org/apache/commons/xml/secure/SecureDocumentBuilderFactory.java index f9ab73d..df08d18 100644 --- a/src/main/java/org/apache/commons/xml/secure/SecureDocumentBuilderFactory.java +++ b/src/main/java/org/apache/commons/xml/secure/SecureDocumentBuilderFactory.java @@ -350,7 +350,7 @@ static DocumentBuilderFactory secure(final DocumentBuilderFactory factory) { * @param factory The factory to secure. * @param feature The feature to set. * @param value The value to set. - * @throws SecureException Thrown if this factory or the {@code XPath}s it creates cannot support this feature. + * @throws SecureException Thrown if this factory cannot support this feature. * @throws NullPointerException Thrown if the {@code feature} parameter is null. */ private static void setFeature(final DocumentBuilderFactory factory, final String feature, final boolean value) {
