You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/12/15 04:00:52 UTC

svn commit: r890615 - in /cxf/branches/2.2.x-fixes: ./ rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java

Author: dkulp
Date: Tue Dec 15 03:00:51 2009
New Revision: 890615

URL: http://svn.apache.org/viewvc?rev=890615&view=rev
Log:
Merged revisions 890614 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r890614 | dkulp | 2009-12-14 21:59:39 -0500 (Mon, 14 Dec 2009) | 1 line
  
  Fix pmd error
........

Modified:
    cxf/branches/2.2.x-fixes/   (props changed)
    cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
    svn:mergeinfo = /cxf/trunk:890614

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java?rev=890615&r1=890614&r2=890615&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java (original)
+++ cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java Tue Dec 15 03:00:51 2009
@@ -2272,7 +2272,7 @@
         }
     }
     protected void processTypes(Class sc, Type tp) {
-        if (tp != null && tp instanceof ParameterizedType) { 
+        if (tp instanceof ParameterizedType) { 
             ParameterizedType ptp = (ParameterizedType)tp;
             Type c = (Class)ptp.getRawType();
             Map<String, Class<?>> m = new HashMap<String, Class<?>>();