Fix variable naming

This commit is contained in:
Emanuel Pordes 2013-10-11 15:50:54 -04:00
parent e58589e4c0
commit 41d93e14f6
1 changed files with 2 additions and 2 deletions

View File

@ -136,14 +136,14 @@ public class UmlGraphDoc {
dotExecutable = "dot";
}
File dotFile = new File(outputFolder, packageName.replace(".", "/") + "/" + name + ".dot");
File pngFile = new File(outputFolder, packageName.replace(".", "/") + "/" + name + ".svg");
File svgFile = new File(outputFolder, packageName.replace(".", "/") + "/" + name + ".svg");
try {
Process p = Runtime.getRuntime().exec(new String [] {
dotExecutable,
"-Tsvg",
"-o",
pngFile.getAbsolutePath(),
svgFile.getAbsolutePath(),
dotFile.getAbsolutePath()
});
BufferedReader reader = new BufferedReader(new InputStreamReader(p.getErrorStream()));