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 2014/07/07 18:50:58 UTC

git commit: Fix compile failure

Repository: cxf
Updated Branches:
  refs/heads/2.7.x-fixes 2ac108e57 -> 3d24db163


Fix compile failure


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

Branch: refs/heads/2.7.x-fixes
Commit: 3d24db16311236590d6216ccead5f29f592eaae6
Parents: 2ac108e
Author: Daniel Kulp <dk...@apache.org>
Authored: Mon Jul 7 12:50:18 2014 -0400
Committer: Daniel Kulp <dk...@apache.org>
Committed: Mon Jul 7 12:50:18 2014 -0400

----------------------------------------------------------------------
 .../test/java/org/apache/cxf/jaxws/ws/PolicyAnnotationTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/3d24db16/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/ws/PolicyAnnotationTest.java
----------------------------------------------------------------------
diff --git a/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/ws/PolicyAnnotationTest.java b/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/ws/PolicyAnnotationTest.java
index d499735..90663ee 100644
--- a/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/ws/PolicyAnnotationTest.java
+++ b/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/ws/PolicyAnnotationTest.java
@@ -228,7 +228,7 @@ public class PolicyAnnotationTest extends Assert {
                         + "wsp:PolicyReference[@URI='#TestImplNoInterfaceServiceSoapBindingBindingPolicy']", wsdl)
                         .getLength());
             final EndpointPolicy policy = bus.getExtension(PolicyEngine.class)
-                    .getServerEndpointPolicy(s.getEndpoint().getEndpointInfo(), null, null);
+                    .getServerEndpointPolicy(s.getEndpoint().getEndpointInfo(), null);
             assertNotNull(policy);
         } finally {
             bus.shutdown(true);
@@ -271,7 +271,7 @@ public class PolicyAnnotationTest extends Assert {
                     + "wsp:PolicyReference[@URI='#TestImplWithPoliciesNoInterfaceServiceSoapBindingBindingPolicy']",
                             wsdl).getLength());
             final EndpointPolicy policy = bus.getExtension(PolicyEngine.class)
-                    .getServerEndpointPolicy(s.getEndpoint().getEndpointInfo(), null, null);
+                    .getServerEndpointPolicy(s.getEndpoint().getEndpointInfo(), null);
             assertNotNull(policy);
         } finally {
             bus.shutdown(true);