Loading sdg-core/src/main/java/tfm/graphs/cfg/CFGBuilder.java +0 −9 Original line number Diff line number Diff line Loading @@ -326,15 +326,6 @@ public class CFGBuilder extends VoidVisitorAdapter<Void> { createAndConnectFormalOutNodes(methodDeclaration); // Create and connect formal-out nodes sequentially for (Parameter param : methodDeclaration.getParameters()) { // Do not generate out for primitives if (param.getType().isPrimitiveType()) { continue; } connectTo(addFormalOutGraphNode(param)); } // Create and connect the exit node connectTo(graph.addNode("Exit", new EmptyStmt(), TypeNodeFactory.fromType(NodeType.METHOD_EXIT))); } Loading Loading
sdg-core/src/main/java/tfm/graphs/cfg/CFGBuilder.java +0 −9 Original line number Diff line number Diff line Loading @@ -326,15 +326,6 @@ public class CFGBuilder extends VoidVisitorAdapter<Void> { createAndConnectFormalOutNodes(methodDeclaration); // Create and connect formal-out nodes sequentially for (Parameter param : methodDeclaration.getParameters()) { // Do not generate out for primitives if (param.getType().isPrimitiveType()) { continue; } connectTo(addFormalOutGraphNode(param)); } // Create and connect the exit node connectTo(graph.addNode("Exit", new EmptyStmt(), TypeNodeFactory.fromType(NodeType.METHOD_EXIT))); } Loading