Bugfixes, updated graphviz lib

This commit is contained in:
2017-06-12 10:38:21 +02:00
parent a1d00818c3
commit 7f56cf6932
4 changed files with 9 additions and 5 deletions
+2 -1
View File
@@ -102,7 +102,8 @@ public class FileParser {
String line = "Error";
line = br.readLine();
RegExp regex = RegExp.naarRegExp(line);
RegExp regex = new RegExp();
regex = regex.naarRegExp(line);
return regex;
}