Skip to content

Commit

Permalink
Comments
Browse files Browse the repository at this point in the history
Signed-off-by: Hernan Ponce de Leon <[email protected]>
  • Loading branch information
hernan-poncedeleon committed Jan 17, 2024
1 parent fb441e7 commit be3539f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private void generateGraph(Program program, Config configuration) {
maySet.removeAll(mustSet);
}

// Print the graphs
// Generates the graphs
final var graphviz = new Graphviz();
graphviz.beginGraph("alias");
graphviz.beginSubgraph("may alias");
Expand All @@ -148,7 +148,7 @@ private void generateGraph(Program program, Config configuration) {
graphviz.end();
graphviz.end();

// Print the .dot file and convert into the .png file.
// Generates the .dot file and convert into the .png file.
String programName = program.getName();
String programBase = programName.substring(0, programName.lastIndexOf('.'));
File dotFile = new File(getOutputDirectory() + "/" + programBase + "-alias.dot");
Expand Down

0 comments on commit be3539f

Please sign in to comment.