Explorar el Código

323634: only parameterize if there is something to parameterize

tags/V1_6_10RC1
aclement hace 14 años
padre
commit
ce16a06749
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      org.aspectj.matcher/src/org/aspectj/weaver/ReferenceType.java

+ 1
- 1
org.aspectj.matcher/src/org/aspectj/weaver/ReferenceType.java Ver fichero

@@ -818,7 +818,7 @@ public class ReferenceType extends ResolvedType {
@Override
public PerClause getPerClause() {
PerClause pclause = getDelegate().getPerClause();
if (isParameterizedType()) { // could cache the result here...
if (pclause != null && isParameterizedType()) { // could cache the result here...
Map<String, UnresolvedType> parameterizationMap = getAjMemberParameterizationMap();
pclause = (PerClause) pclause.parameterizeWith(parameterizationMap, world);
}

Cargando…
Cancelar
Guardar