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()];