소스 검색

removed some dead Code

Jan Enders 8 년 전
부모
커밋
76ed34af07
1개의 변경된 파일0개의 추가작업 그리고 5개의 파일을 삭제
  1. 0 5
      scopviz/src/main/java/de/tu_darmstadt/informatik/tk/scopviz/graphs/MyGraph.java

+ 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);