Author: coheigea
Date: Fri Oct 5 11:23:16 2012
New Revision: 1394446
URL: http://svn.apache.org/viewvc?rev=1394446&view=rev
Log:
Backporting specific bug from trunk
Modified:
cxf/branches/2.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/EffectivePolicyImpl.java
Modified:
cxf/branches/2.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/EffectivePolicyImpl.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/EffectivePolicyImpl.java?rev=1394446&r1=1394445&r2=1394446&view=diff
==============================================================================
---
cxf/branches/2.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/EffectivePolicyImpl.java
(original)
+++
cxf/branches/2.6.x-fixes/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/EffectivePolicyImpl.java
Fri Oct 5 11:23:16 2012
@@ -230,7 +230,7 @@ public class EffectivePolicyImpl impleme
QName qn = a.getName();
List<Interceptor<? extends org.apache.cxf.message.Message>> i = null;
- if (useIn & !fault) {
+ if (useIn && !fault) {
i = reg.getInInterceptorsForAssertion(qn);
} else if (!useIn && !fault) {
i = reg.getOutInterceptorsForAssertion(qn);