Skip to content

Commit

Permalink
bug fix for cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
tschlenther committed Jun 24, 2024
1 parent 4d14e95 commit e7de164
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Integer call() throws Exception {

Arrays.stream(new File(analysisDir).listFiles())
.filter(d -> d.getAbsolutePath().contains(TransportMode.drt))
.forEach(f -> modes.add(f.getAbsolutePath().substring(f.getAbsolutePath().lastIndexOf("\\") + 1)));
.forEach(f -> modes.add(f.getName()));

SimWrapper sw = SimWrapper.create();

Expand Down

0 comments on commit e7de164

Please sign in to comment.