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 db2cbe02b5a9f8012525b858df5675d554f67175 Author: Gary Gregory <[email protected]> AuthorDate: Wed Sep 2 07:05:33 2026 -0400 Javadoc: Fix word salad. --- src/main/java/org/apache/commons/xml/secure/SecureSchemaFactory.java | 2 +- src/main/java/org/apache/commons/xml/secure/package-info.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/xml/secure/SecureSchemaFactory.java b/src/main/java/org/apache/commons/xml/secure/SecureSchemaFactory.java index 2f942ca..adcbd4a 100644 --- a/src/main/java/org/apache/commons/xml/secure/SecureSchemaFactory.java +++ b/src/main/java/org/apache/commons/xml/secure/SecureSchemaFactory.java @@ -84,7 +84,7 @@ public final class SecureSchemaFactory { * every implementation, and the JDK 8 {@code SchemaFactory} has a bug whereby those properties keep blocking even when a caller's own resolver would grant * the access. The floor is a non-removable * lower bound: a caller-set {@link LSResourceResolver} is routed through it (opting a specific lookup in by returning a non-{@code null} result) rather than - * replacing it, so secure cannot be dropped by swapping the resolver. + * replacing it, so the securing (or the floor) cannot be dropped by swapping the resolver. * </p> * * @see org.apache.commons.xml.secure diff --git a/src/main/java/org/apache/commons/xml/secure/package-info.java b/src/main/java/org/apache/commons/xml/secure/package-info.java index 17655e6..f94ac59 100644 --- a/src/main/java/org/apache/commons/xml/secure/package-info.java +++ b/src/main/java/org/apache/commons/xml/secure/package-info.java @@ -24,7 +24,7 @@ * <p> * A returned factory is not necessarily an instance of the underlying implementation. It might be (and usually is) a wrapper around it, so it cannot be cast to * the implementation's own class. Everything else about the implementation's behavior is preserved: features, properties, and attributes delegate to it, and - * only the security behavior is secure. + * only the security behavior differs. * </p> * <p> * Preserved behavior includes the choice of internal parsers. Each TrAX, XPath, or schema implementation has its own way of instantiating them, and the library
