Author: britter
Date: Sat Feb 23 14:28:36 2013
New Revision: 1449325

URL: http://svn.apache.org/r1449325
Log:
[BEANUTILS-414] - Object 
org.apache.commons.beanutils.ConvertUtilsBean.convert(String value, Class 
clazz) nullPointException; Add documentation of permitted null inputs

Modified:
    
commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtils.java
    
commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java

Modified: 
commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtils.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtils.java?rev=1449325&r1=1449324&r2=1449325&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtils.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtils.java
 Sat Feb 23 14:28:36 2013
@@ -231,7 +231,7 @@ public class ConvertUtils {
      * <p>For more details see <code>ConvertUtilsBean</code>.</p>
      *
      * @param value Value to be converted (may be null)
-     * @param clazz Java class to be converted to
+     * @param clazz Java class to be converted to (must not be null)
      * @return The converted value
      *
      * @see ConvertUtilsBean#convert(String, Class)
@@ -250,7 +250,7 @@ public class ConvertUtils {
      * <p>For more details see <code>ConvertUtilsBean</code>.</p>
      *
      * @param values Array of values to be converted
-     * @param clazz Java array or element class to be converted to
+     * @param clazz Java array or element class to be converted to (must not 
be null)
      * @return The converted value
      *
      * @see ConvertUtilsBean#convert(String[], Class)
@@ -266,7 +266,7 @@ public class ConvertUtils {
      * possible).</p>
      *
      * @param value Value to be converted (may be null)
-     * @param targetType Class of the value to be converted to
+     * @param targetType Class of the value to be converted to (must not be 
null)
      * @return The converted value
      *
      * @exception ConversionException if thrown by an underlying Converter

Modified: 
commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java?rev=1449325&r1=1449324&r2=1449325&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java
 Sat Feb 23 14:28:36 2013
@@ -449,7 +449,7 @@ public class ConvertUtilsBean {
      * possible).  Otherwise, return a String representation of the value.
      *
      * @param value Value to be converted (may be null)
-     * @param clazz Java class to be converted to
+     * @param clazz Java class to be converted to (must not be null)
      * @return The converted value
      *
      * @exception ConversionException if thrown by an underlying Converter
@@ -480,7 +480,7 @@ public class ConvertUtilsBean {
      * specified class.
      *
      * @param values Array of values to be converted
-     * @param clazz Java array or element class to be converted to
+     * @param clazz Java array or element class to be converted to (must not 
be null)
      * @return The converted value
      *
      * @exception ConversionException if thrown by an underlying Converter
@@ -516,7 +516,7 @@ public class ConvertUtilsBean {
      * possible).</p>
      *
      * @param value Value to be converted (may be null)
-     * @param targetType Class of the value to be converted to
+     * @param targetType Class of the value to be converted to (must not be 
null)
      * @return The converted value
      *
      * @exception ConversionException if thrown by an underlying Converter


Reply via email to