Index: BeanUtils.java
===================================================================
RCS file: /home/cvspublic/jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/BeanUtils.java,v
retrieving revision 1.23
diff -u -r1.23 BeanUtils.java
--- BeanUtils.java	5 Jun 2002 20:46:38 -0000	1.23
+++ BeanUtils.java	15 Jun 2002 17:00:33 -0000
@@ -664,7 +664,7 @@
                 newValue = ConvertUtils.convert((String) value,
                                                 type.getComponentType());
             } else if (value instanceof String[]) {
-                newValue = ConvertUtils.convert(((String[]) value)[0],
+                newValue = ConvertUtils.convert(((String[]) value),
                                                 type.getComponentType());
             } else {
                 newValue = value;


