Skip to content
Snippets Groups Projects
Commit 4eaa2b64 authored by Jürgen Walter's avatar Jürgen Walter
Browse files

minor

parent 48f29d89
No related branches found
No related tags found
No related merge requests found
......@@ -300,10 +300,11 @@ public class PerformanceModelFilterAppender {
throws IllegalStateException, AnalysisConfigurationException {
final String systemEntitiesHtmlFn;
if (new File(resultPath).isDirectory()) {
systemEntitiesHtmlFn = resultPath + "system.html";
} else {
systemEntitiesHtmlFn = resultPath + File.separator + "system.html";
} else {
systemEntitiesHtmlFn = "system.html";
}
File file = new File(resultPath + File.separator);
file.mkdirs();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment