Skip to content

Commit

Permalink
Start undoing debugging output, see at what point it fails
Browse files Browse the repository at this point in the history
  • Loading branch information
wmdietl committed Aug 8, 2024
1 parent 9e10cd8 commit b212704
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ void generateDOTofCFG(
* @return control flow graph of the specified method
*/
public static ControlFlowGraph generateMethodCFG(String file, String clas, String method) {
System.err.println("generateMethodCFG: " + file + " clas: " + clas + " method: " + method);
// System.err.println("generateMethodCFG: " + file + " clas: " + clas + " method: " +
// method);
CFGProcessor cfgProcessor = new CFGProcessor(clas, method);

Context context = new Context();
Expand Down

0 comments on commit b212704

Please sign in to comment.