Author: dkulp
Date: Tue May 20 18:07:05 2008
New Revision: 658519

URL: http://svn.apache.org/viewvc?rev=658519&view=rev
Log:
Fix compile failure

Modified:
    
cxf/branches/2.0.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java

Modified: 
cxf/branches/2.0.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
URL: 
http://svn.apache.org/viewvc/cxf/branches/2.0.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java?rev=658519&r1=658518&r2=658519&view=diff
==============================================================================
--- 
cxf/branches/2.0.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
 (original)
+++ 
cxf/branches/2.0.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
 Tue May 20 18:07:05 2008
@@ -1391,9 +1391,6 @@
                 if (mpi != null) {
                     mpi.setTypeClass(rawClass);
                     mpi.setProperty(GENERIC_TYPE, type);
-                    if (Collection.class.isAssignableFrom(rawClass)) {
-                        mpi.setProperty(RAW_CLASS, type);
-                    }
                 }
             }
             if 
(!Boolean.TRUE.equals(part.getProperty(ReflectionServiceFactoryBean.MODE_OUT))) 
{
@@ -1401,9 +1398,6 @@
                 if (mpi != null) {
                     mpi.setTypeClass(rawClass);
                     mpi.setProperty(GENERIC_TYPE, type);
-                    if (Collection.class.isAssignableFrom(rawClass)) {
-                        mpi.setProperty(RAW_CLASS, type);
-                    }
                 }
             }
         }      


Reply via email to