Andy Clement пре 11 година
родитељ
комит
3e5af0fdcc
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2
    0
      org.aspectj.matcher/src/org/aspectj/weaver/patterns/AndPointcut.java

+ 2
- 0
org.aspectj.matcher/src/org/aspectj/weaver/patterns/AndPointcut.java Прегледај датотеку

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


Loading…
Откажи
Сачувај