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-xml.git
commit 544f5c32f4f9ce39d06c276e136d2bff543cb2c1 Author: Gary Gregory <[email protected]> AuthorDate: Fri Aug 28 17:53:58 2026 -0400 Javadoc: Use "secure" terminology. --- src/main/java/org/apache/commons/xml/SecureXMLFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/xml/SecureXMLFilter.java b/src/main/java/org/apache/commons/xml/SecureXMLFilter.java index 50c7180..56c294b 100644 --- a/src/main/java/org/apache/commons/xml/SecureXMLFilter.java +++ b/src/main/java/org/apache/commons/xml/SecureXMLFilter.java @@ -37,7 +37,7 @@ * {@link XMLFilter} that transforms the parsed input through a {@link SecureTemplates} and emits the result as SAX events. * * <p>Composed from the library's own wrappers instead of delegating to the implementation's filter, because the implementation filters self-provision an - * unhardened reader for the input (the stock JDK's does so as early as {@code setContentHandler}) and cast a supplied {@link javax.xml.transform.Templates} to + * unsecured reader for the input (the stock JDK's does so as early as {@code setContentHandler}) and cast a supplied {@link javax.xml.transform.Templates} to * their own type, which a wrapped Templates is not. Here the input is parsed by the parent reader, a secure one installed on first {@code parse} when the * caller has not set a parent (a caller-set parent is trusted configuration, used as-is), and the transformation runs on a {@link SecureTransformer}, so * runtime {@code document()} sits on the resolver floor.</p>
