Commit 4940eccc authored by Carlos Galindo's avatar Carlos Galindo
Browse files

Deactivate the polymorphic call graph for now.

parent da46f315
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -167,7 +167,7 @@ public class CallGraph extends DirectedPseudograph<CallGraph.Vertex, CallGraph.E
            // =============== Method calls ===============
            @Override
            public void visit(MethodCallExpr n, Void arg) {
                n.resolve().toAst().ifPresent(decl -> createPolyEdges(decl, n));
                n.resolve().toAst().ifPresent(decl -> createNormalEdge(decl, n));
                super.visit(n, arg);
            }