From: Juergen H. <jho...@us...> - 2008-10-29 15:56:34
|
Update of /cvsroot/springframework/spring/src/org/springframework/beans In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv26271/src/org/springframework/beans Modified Files: BeanUtils.java Log Message: BeanUtils skips conventional editor check for array classes (in order to not break AspectJ weaving) Index: BeanUtils.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/beans/BeanUtils.java,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** BeanUtils.java 21 Jun 2008 20:27:02 -0000 1.63 --- BeanUtils.java 29 Oct 2008 15:56:19 -0000 1.64 *************** *** 361,365 **** */ public static PropertyEditor findEditorByConvention(Class targetType) { ! if (targetType == null || unknownEditorTypes.containsKey(targetType)) { return null; } --- 361,365 ---- */ public static PropertyEditor findEditorByConvention(Class targetType) { ! if (targetType == null || targetType.isArray() || unknownEditorTypes.containsKey(targetType)) { return null; } |