Browse Source

removed some dead Code

Jan Enders 7 years ago
parent
commit
76ed34af07

+ 0 - 5
scopviz/src/main/java/de/tu_darmstadt/informatik/tk/scopviz/graphs/MyGraph.java

@@ -130,11 +130,6 @@ public class MyGraph extends SingleGraph {
 	 *            the Node that was just created
 	 */
 	private void nodeCreatedNotify(Node n) {
-		if (n.getAttribute("typeofNode") != null && n.getAttribute("typeofNode").equals("procEn")) {
-			ToolboxManager.createProcMaxDialog(n);
-		} else if (n.getAttribute("typeOfNode") != null && n.getAttribute("typeofNode").equals("operator")) {
-			ToolboxManager.createProcNeedDialog(n);
-		}
 		GraphHelper.setAllDefaults(this);
 		for (NodeCreatedListener list : allNodeListeners) {
 			list.nodeCreated(n, id);