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 0bf44384cab8b7770370f3c1d4ee31103ae197f7 Author: Gary Gregory <[email protected]> AuthorDate: Fri Aug 28 14:34:09 2026 -0400 Javadoc: "hardening" -> "secure/securing" wording to match new class and method names. Rename test methods. --- src/test/java/org/apache/commons/xml/SchemaLocationSaxTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/xml/SchemaLocationSaxTest.java b/src/test/java/org/apache/commons/xml/SchemaLocationSaxTest.java index 0cee73b..3bb2f60 100644 --- a/src/test/java/org/apache/commons/xml/SchemaLocationSaxTest.java +++ b/src/test/java/org/apache/commons/xml/SchemaLocationSaxTest.java @@ -118,7 +118,7 @@ void unconfiguredFetchesExternalSchema() throws Exception { final SAXParserFactory factory = SAXParserFactory.newInstance(); factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, false); final SAXParser parser = newValidatingParser(factory); - // Positive control: without hardening the external schema is fetched and its default attribute is augmented onto the root element. + // Positive control: without securing the external schema is fetched and its default attribute is augmented onto the root element. final LeakCapturingHandler handler = new LeakCapturingHandler(); parse(parser, handler); assertEquals(LEAKED_MARKER, handler.leak,
