]> source.dussan.org Git - aspectj.git/commitdiff
395221
authorAndy Clement <andrew.clement@gmail.com>
Tue, 27 Nov 2012 22:52:33 +0000 (14:52 -0800)
committerAndy Clement <andrew.clement@gmail.com>
Tue, 27 Nov 2012 22:52:33 +0000 (14:52 -0800)
org.aspectj.matcher/src/org/aspectj/weaver/patterns/AndPointcut.java

index c3f003ad8ae2d6539c11fdc3872464652144952d..c9e56d63cb9c04907f6e551c605ed06290d7fcec 100644 (file)
@@ -100,12 +100,14 @@ public class AndPointcut extends Pointcut {
                AndPointcut ret = new AndPointcut(left.concretize(inAspect, declaringType, bindings), right.concretize(inAspect,
                                declaringType, bindings));
                ret.copyLocationFrom(this);
+               ret.m_ignoreUnboundBindingForNames = m_ignoreUnboundBindingForNames;
                return ret;
        }
 
        public Pointcut parameterizeWith(Map typeVariableMap, World w) {
                AndPointcut ret = new AndPointcut(left.parameterizeWith(typeVariableMap, w), right.parameterizeWith(typeVariableMap, w));
                ret.copyLocationFrom(this);
+               ret.m_ignoreUnboundBindingForNames = m_ignoreUnboundBindingForNames;
                return ret;
        }