Author: dkulp Date: Fri Dec 21 15:22:50 2012 New Revision: 1424962 URL: http://svn.apache.org/viewvc?rev=1424962&view=rev Log: Merged revisions 1424955 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes
........ r1424955 | dkulp | 2012-12-21 10:20:08 -0500 (Fri, 21 Dec 2012) | 10 lines Merged revisions 1424948 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/trunk ........ r1424948 | dkulp | 2012-12-21 10:17:02 -0500 (Fri, 21 Dec 2012) | 2 lines Slight optimization on getting the BOI ........ ........ Modified: cxf/branches/2.5.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java Modified: cxf/branches/2.5.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java?rev=1424962&r1=1424961&r2=1424962&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java (original) +++ cxf/branches/2.5.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java Fri Dec 21 15:22:50 2012 @@ -63,7 +63,7 @@ public class PolicyVerificationInInterce } Exchange exchange = message.getExchange(); - BindingOperationInfo boi = exchange.get(BindingOperationInfo.class); + BindingOperationInfo boi = exchange.getBindingOperationInfo(); if (null == boi) { LOG.fine("No binding operation info."); return;
