Hi,
Two recent commits (to Digester.java and xmlrules/DigesterLoader.java)
have introduced javadoc which generates a warning when built.
example:
[javadoc]
/home/simon/apache/commons-cvs/jakarta-commons/digester/src/java/org/apache/commons/digester/xmlrules/DigesterLoader.java:94:
warning - @param argument "inputSource" is not a parameter name.
Attached is a (trivial) patch to fix these problems.
Regards,
Simon
Index: Digester.java
===================================================================
RCS file: /home/cvspublic/jakarta-commons/digester/src/java/org/apache/commons/digester/Digester.java,v
retrieving revision 1.84
diff -u -r1.84 Digester.java
--- Digester.java 19 Oct 2003 19:35:40 -0000 1.84
+++ Digester.java 27 Oct 2003 22:10:57 -0000
@@ -604,7 +604,7 @@
/**
* Sets the logger used for logging SAX-related information.
* <strong>Note</strong> the output is finely grained.
- * @param log Log, not null
+ * @param saxLog Log, not null
*/
public void setSAXLogger(Log saxLog) {
Index: xmlrules/DigesterLoader.java
===================================================================
RCS file: /home/cvspublic/jakarta-commons/digester/src/java/org/apache/commons/digester/xmlrules/DigesterLoader.java,v
retrieving revision 1.9
diff -u -r1.9 DigesterLoader.java
--- xmlrules/DigesterLoader.java 22 Oct 2003 18:28:57 -0000 1.9
+++ xmlrules/DigesterLoader.java 27 Oct 2003 22:10:57 -0000
@@ -88,7 +88,7 @@
/**
* Creates a new digester and initializes it from the specified InputSource
- * @param inputSource load the xml rules from this InputSource
+ * @param rulesSource load the xml rules from this InputSource
* @return a new Digester initialized with the rules
*/
public static Digester createDigester(InputSource rulesSource) {
@@ -103,7 +103,7 @@
* This constructor allows the digester to be used to load the rules to be specified.
* This allows properties to be configured on the Digester instance before it is used.
*
- * @param inputSource load the xml rules from this InputSource
+ * @param rulesSource load the xml rules from this InputSource
* @param rulesDigester digester to load the specified XML file.
* @return a new Digester initialized with the rules
*/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]