Andy Clement 11 лет назад
Родитель
Сommit
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;
}


Загрузка…
Отмена
Сохранить