You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/04/18 14:36:34 UTC

cxf git commit: [CXF-7331] Returning the unwrapped class

Repository: cxf
Updated Branches:
  refs/heads/master e5eacd69d -> 06a7b75e0


[CXF-7331] Returning the unwrapped class


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

Branch: refs/heads/master
Commit: 06a7b75e010e011084bb753a5bcd029f55134921
Parents: e5eacd6
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Tue Apr 18 15:36:19 2017 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Tue Apr 18 15:36:19 2017 +0100

----------------------------------------------------------------------
 .../src/main/java/org/apache/cxf/jaxrs/impl/ResourceInfoImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/06a7b75e/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/ResourceInfoImpl.java
----------------------------------------------------------------------
diff --git a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/ResourceInfoImpl.java b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/ResourceInfoImpl.java
index 4c8217d..f5cd458 100644
--- a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/ResourceInfoImpl.java
+++ b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/ResourceInfoImpl.java
@@ -42,7 +42,7 @@ public class ResourceInfoImpl implements ResourceInfo {
     }
     @Override
     public Class<?> getResourceClass() {
-        return ori == null ? null : ori.getClassResourceInfo().getResourceClass();
+        return ori == null ? null : ori.getClassResourceInfo().getServiceClass();
     }
 
 }