Author: dkulp
Date: Fri Dec 21 15:20:08 2012
New Revision: 1424955

URL: http://svn.apache.org/viewvc?rev=1424955&view=rev
Log:
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.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java

Modified: 
cxf/branches/2.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java
URL: 
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java?rev=1424955&r1=1424954&r2=1424955&view=diff
==============================================================================
--- 
cxf/branches/2.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java
 (original)
+++ 
cxf/branches/2.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java
 Fri Dec 21 15:20:08 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;


Reply via email to