File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 13
13
import java .nio .file .Paths ;
14
14
import java .util .ArrayList ;
15
15
import java .util .Iterator ;
16
+ import java .util .List ;
16
17
import java .util .Properties ;
18
+ import java .util .stream .Collectors ;
17
19
18
20
import javax .tools .JavaCompiler ;
19
21
import javax .tools .ToolProvider ;
@@ -253,9 +255,10 @@ public static void main(String[] args) throws IOException {
253
255
}
254
256
255
257
if (target .equals ("SVCOMP" )) {
256
- Files .walk (Paths .get (dest ))
257
- .filter (path -> path .toString ().endsWith (".java" ))
258
- .forEach (Main ::restructureForSVCompFormat );
258
+ List <Path > javaFiles = Files .walk (Paths .get (dest ))
259
+ .filter (path -> path .toString ().endsWith (".java" ))
260
+ .collect (Collectors .toList ());
261
+ javaFiles .forEach (Main ::restructureForSVCompFormat );
259
262
}
260
263
261
264
removeEmptyDirs (destDir );
You can’t perform that action at this time.
0 commit comments