Repository: cxf
Updated Branches:
  refs/heads/3.0.x-fixes a4fa2aa78 -> 83cb354e0


[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/83cb354e
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/83cb354e
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/83cb354e

Branch: refs/heads/3.0.x-fixes
Commit: 83cb354e06bcaee67d6bf64966e24060ac25fbe4
Parents: a4fa2aa
Author: Sergey Beryozkin <[email protected]>
Authored: Mon Sep 28 23:41:42 2015 +0200
Committer: Sergey Beryozkin <[email protected]>
Committed: Mon Sep 28 23:42:27 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/83cb354e/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