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 d060a2755a72711f5299298c56dbf7d5dbb2a8d7 Author: Gary Gregory <[email protected]> AuthorDate: Wed Aug 26 13:52:36 2026 -0400 Normalize Javadoc --- src/main/java/org/apache/commons/xml/XmlFactories.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/xml/XmlFactories.java b/src/main/java/org/apache/commons/xml/XmlFactories.java index 5d1ca42..a7acc05 100644 --- a/src/main/java/org/apache/commons/xml/XmlFactories.java +++ b/src/main/java/org/apache/commons/xml/XmlFactories.java @@ -17,6 +17,7 @@ package org.apache.commons.xml; +import javax.xml.XMLConstants; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.FactoryConfigurationError; @@ -94,7 +95,9 @@ public final class XmlFactories { * </p> * * @return A hardened factory. - * @throws IllegalStateException if a required hardening setting cannot be applied to the underlying implementation. + * @throws IllegalStateException Thrown if a required hardening setting cannot be applied to the underlying implementation. + * @throws IllegalStateException Thrown if a (non-Andoid) factory cannot support the secure processing feature + * {@link XMLConstants#FEATURE_SECURE_PROCESSING}. * @throws FactoryConfigurationError Thrown from a factory in case of a {@link java.util.ServiceConfigurationError service configuration error} or if the * implementation is not available or cannot be instantiated. */
