You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/10/24 08:37:10 UTC

svn commit: r1188032 - /commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/CallMethodRule.java

Author: simonetripodi
Date: Mon Oct 24 06:37:09 2011
New Revision: 1188032

URL: http://svn.apache.org/viewvc?rev=1188032&view=rev
Log:
fixed broken javadoc links - thanks Phil for reporting

Modified:
    commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/CallMethodRule.java

Modified: commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/CallMethodRule.java
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/CallMethodRule.java?rev=1188032&r1=1188031&r2=1188032&view=diff
==============================================================================
--- commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/CallMethodRule.java (original)
+++ commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/CallMethodRule.java Mon Oct 24 06:37:09 2011
@@ -43,9 +43,10 @@ import org.xml.sax.SAXException;
  * Incompatible method parameter types are converted using <code>org.apache.commons.beanutils.ConvertUtils</code>.
  * </p>
  * <p>
- * This rule now uses {@link MethodUtils#invokeMethod} by default. This increases the kinds of methods successfully and
- * allows primitives to be matched by passing in wrapper classes. There are rare cases when
- * {@link MethodUtils#invokeExactMethod} (the old default) is required. This method is much stricter in it's reflection.
+ * This rule now uses {@link org.apache.commons.beanutils.MethodUtils#invokeMethod} by default.
+ * This increases the kinds of methods successfully and allows primitives to be matched by passing in wrapper classes.
+ * There are rare cases when {@link org.apache.commons.beanutils.MethodUtils#invokeExactMethod} (the old default) is
+ * required. This method is much stricter in it's reflection.
  * Setting the <code>UseExactMatch</code> to true reverts to the use of this method.
  * </p>
  * <p>