if (edge != null) {
this.getFamixToEdgeMap().remove(association);
this.getEdgeToFamixMap().set(edge, null);
Graph graph = edge.getGraph();
if (graph != null) { // graph is null for edges contained by a collapsed node
graph.removeEdge(edge);
}
isRemoved = true;
}
return isRemoved;