This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-digester.git
commit c0e5707a88e266d8c4fe379d05b58c47f193aaa1 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jun 18 09:17:30 2024 -0400 Javadoc --- .../commons/digester3/xmlrules/FromXmlRulesModule.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/xmlrules/FromXmlRulesModule.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/xmlrules/FromXmlRulesModule.java index ad596804..a7eea398 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/xmlrules/FromXmlRulesModule.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/xmlrules/FromXmlRulesModule.java @@ -92,9 +92,9 @@ public abstract class FromXmlRulesModule protected abstract void loadRules(); /** - * Opens a new {@code org.xml.sax.InputSource} given a {@link java.io.File}. + * Opens a new {@code org.xml.sax.InputSource} given a {@link File}. * - * @param file The {@link java.io.File} where reading the XML rules from. + * @param file The {@link File} where reading the XML rules from. */ protected final void loadXMLRules( final File file ) { @@ -151,9 +151,9 @@ public abstract class FromXmlRulesModule } /** - * Opens a new {@code org.xml.sax.InputSource} given a {@link java.io.InputStream}. + * Opens a new {@code org.xml.sax.InputSource} given a {@link InputStream}. * - * @param input The {@link java.io.InputStream} where reading the XML rules from. + * @param input The {@link InputStream} where reading the XML rules from. */ protected final void loadXMLRules( final InputStream input ) { @@ -166,9 +166,9 @@ public abstract class FromXmlRulesModule } /** - * Opens a new {@code org.xml.sax.InputSource} given a {@link java.io.Reader}. + * Opens a new {@code org.xml.sax.InputSource} given a {@link Reader}. * - * @param reader The {@link java.io.Reader} where reading the XML rules from. + * @param reader The {@link Reader} where reading the XML rules from. */ protected final void loadXMLRules( final Reader reader ) {