You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2008/04/03 04:30:24 UTC

svn commit: r644137 - /commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/PropertyUtils.java

Author: niallp
Date: Wed Apr  2 19:30:23 2008
New Revision: 644137

URL: http://svn.apache.org/viewvc?rev=644137&view=rev
Log:
minor javadoc correction

Modified:
    commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/PropertyUtils.java

Modified: commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/PropertyUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/PropertyUtils.java?rev=644137&r1=644136&r2=644137&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/PropertyUtils.java (original)
+++ commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/PropertyUtils.java Wed Apr  2 19:30:23 2008
@@ -573,7 +573,7 @@
      *
      * @param descriptor Property descriptor to return a getter for
      * @return The read method
-     * @see PropertyUtilsBean#getReadMethod
+     * @see PropertyUtilsBean#getReadMethod(PropertyDescriptor)
      */
     public static Method getReadMethod(PropertyDescriptor descriptor) {
 
@@ -621,7 +621,7 @@
      *
      * @param descriptor Property descriptor to return a setter for
      * @return The write method
-     * @see PropertyUtilsBean#getWriteMethod
+     * @see PropertyUtilsBean#getWriteMethod(PropertyDescriptor)
      */
     public static Method getWriteMethod(PropertyDescriptor descriptor) {