From 7cd52dc3245e18bbc36acdd78e239bb8e6596aa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 4 Feb 2018 09:13:32 +0100 Subject: [PATCH] Making makeGraph public in Graph so Graphviz exporter can access it better --- libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java index 6e445b030..915dd6f2f 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java @@ -2267,7 +2267,7 @@ public class Graph { protected void checkGraph(List allBlocks) { } - private List makeGraph(GraphSource code, List allBlocks, List alternateEntries) throws InterruptedException { + public List makeGraph(GraphSource code, List allBlocks, List alternateEntries) throws InterruptedException { HashMap> refs = code.visitCode(alternateEntries); List ret = new ArrayList<>(); boolean[] visited = new boolean[code.size()];