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 0f8390f1bb01fdb53526b788f9a64710007be9d4 Author: Gary Gregory <[email protected]> AuthorDate: Mon Sep 14 16:59:24 2026 -0700 Javadoc --- .../java/org/apache/commons/xml/secure/ShadingFootprintTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/org/apache/commons/xml/secure/ShadingFootprintTest.java b/src/test/java/org/apache/commons/xml/secure/ShadingFootprintTest.java index cc97680..f982702 100644 --- a/src/test/java/org/apache/commons/xml/secure/ShadingFootprintTest.java +++ b/src/test/java/org/apache/commons/xml/secure/ShadingFootprintTest.java @@ -43,8 +43,8 @@ * * <p>Using {@code jdependency}, the same library {@code maven-shade-plugin}'s {@code minimizeJar} uses, this test computes each entry point's transitive class * closure over the compiled {@code target/classes} and pins it to an expected set. It keeps each entry point from silently regaining a dependency on classes it - * should not need (for example a sibling resolver floor or another factory class), so schema builds only on the shared SAX path, TrAX and XPath additionally on the - * DOM path their Xalan getAssociatedStylesheet and InputSource rewrites parse through, while the six public entry points together pull the whole + * should not need (for example, a sibling resolver floor or another factory class), so schema builds only on the shared SAX path. TrAX and XPath additionally + * build on the DOM path used by their Xalan getAssociatedStylesheet and InputSource rewrites, while the six public entry points together pull in the whole * library. Update the expected sets deliberately: a change here is a change to what a downstream shade includes.</p> * * <p>The test reads the compiled {@code .class} files from the code-source location, which only exists on a regular JVM: a native image carries no bytecode (and @@ -179,7 +179,7 @@ class ShadingFootprintTest { private static final int LIBRARY_CLASS_COUNT = 8; /** - * Entry points reported by the {@link #reportFootprint()} diagnostic, most-focused first, ending with the whole library. + * Entry points reported by the {@link #reportFootprint()} diagnostic, most focused first, ending with the whole library. */ private static final String[] REPORTED = {"SecureDocumentBuilderFactory", "SecureSAXParserFactory", "SecureXMLInputFactory", "SecureTransformerFactory", "SecureXPathFactory", "SecureSchemaFactory"};
