Explorar el Código

fix annoying stacktrace that comes out when running all tests

tags/PRE_PIPELINE
aclement hace 18 años
padre
commit
7ab3074afd
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3
    1
      ajde/src/org/aspectj/ajde/ui/StructureViewNodeFactory.java

+ 3
- 1
ajde/src/org/aspectj/ajde/ui/StructureViewNodeFactory.java Ver fichero

@@ -41,7 +41,9 @@ public abstract class StructureViewNodeFactory {
// Don't put relationships on fields as they can then appear twice when building the outline -
// once under clinit field-set nodes and once under the field declaration.
if (nodeHandle != null && !node.getKind().equals(IProgramElement.Kind.FIELD)) {
List relationships = AsmManager.getDefault().getRelationshipMap().get(nodeHandle);
AsmManager manager = AsmManager.getDefault();
IRelationshipMap relMap = (manager==null?null:manager.getRelationshipMap());
List relationships = (relMap==null?null:relMap.get(nodeHandle));
if (relationships != null) {
for (Iterator it = relationships.iterator(); it.hasNext(); ) {
IRelationship rel = (IRelationship)it.next();

Cargando…
Cancelar
Guardar