Bläddra i källkod

395221

tags/V1_7_2
Andy Clement 11 år sedan
förälder
incheckning
3e5af0fdcc

+ 2
- 0
org.aspectj.matcher/src/org/aspectj/weaver/patterns/AndPointcut.java Visa fil

@@ -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;
}


Laddar…
Avbryt
Spara