Revision: 1334
Author:   mathiasbr
Date:     2006-08-22 12:20:25 -0700 (Tue, 22 Aug 2006)
ViewCVS:  http://svn.sourceforge.net/spring-rich-c/?rev=1334&view=rev

Log Message:
-----------
make it compatible with spring 2

Modified Paths:
--------------
    
trunk/spring-richclient/support/src/main/java/org/springframework/richclient/util/ClassUtils.java
Modified: 
trunk/spring-richclient/support/src/main/java/org/springframework/richclient/util/ClassUtils.java
===================================================================
--- 
trunk/spring-richclient/support/src/main/java/org/springframework/richclient/util/ClassUtils.java
   2006-08-22 17:18:19 UTC (rev 1333)
+++ 
trunk/spring-richclient/support/src/main/java/org/springframework/richclient/util/ClassUtils.java
   2006-08-22 19:20:25 UTC (rev 1334)
@@ -32,6 +32,7 @@
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
+import org.springframework.beans.BeanUtils;
 import org.springframework.core.enums.LabeledEnum;
 import org.springframework.core.style.StylerUtils;
 
@@ -186,14 +187,14 @@
         * Check if the given class represents a primitive wrapper array.
         */
        public static boolean isPrimitiveWrapperArray(Class clazz) {
-               return 
org.springframework.beans.BeanUtils.isPrimitiveWrapperArray(clazz);
+               return BeanUtils.isPrimitiveWrapperArray(clazz);
        }
 
        /**
         * Check if the given class represents a primitive array.
         */
        public static boolean isPrimitiveArray(Class clazz) {
-               return 
org.springframework.beans.BeanUtils.isPrimitiveArray(clazz);
+               return BeanUtils.isPrimitiveArray(clazz);
        }
 
        /**


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
spring-rich-c-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/spring-rich-c-cvs

Reply via email to