Repository: cxf
Updated Branches:
  refs/heads/master 091f8bef0 -> f64917edc


[CXF-6599] Fixing a typo


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/f64917ed
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/f64917ed
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/f64917ed

Branch: refs/heads/master
Commit: f64917edc091ac92617776162cceeb875d116f0b
Parents: 091f8be
Author: Sergey Beryozkin <[email protected]>
Authored: Mon Sep 28 23:41:42 2015 +0200
Committer: Sergey Beryozkin <[email protected]>
Committed: Mon Sep 28 23:41:42 2015 +0200

----------------------------------------------------------------------
 core/src/main/java/org/apache/cxf/common/util/ProxyHelper.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/f64917ed/core/src/main/java/org/apache/cxf/common/util/ProxyHelper.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/cxf/common/util/ProxyHelper.java 
b/core/src/main/java/org/apache/cxf/common/util/ProxyHelper.java
index 6e9e0f7..413098c 100644
--- a/core/src/main/java/org/apache/cxf/common/util/ProxyHelper.java
+++ b/core/src/main/java/org/apache/cxf/common/util/ProxyHelper.java
@@ -83,7 +83,7 @@ public class ProxyHelper {
                         Class.forName(returnType.getName(), true, loader);
                     }
                     for (Class<?> p : m.getParameterTypes()) {
-                        if (!returnType.isPrimitive()) {
+                        if (!p.isPrimitive()) {
                             Class.forName(p.getName(), true, loader);
                         }
                     }

Reply via email to