Skip to content

Commit

Permalink
Fix Spotbugs problem
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGeRe committed Oct 3, 2022
1 parent 3631294 commit aeb7e28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private void copyCommitData(String commit, String predecessor, File fakeMeasurem
File predecessorFolder = new File(runFolder, predecessor);
if (predecessorFolder.exists() && commitFolder.exists()) {
File runFolderCopied = new File(fakeMeasurementFolder, "measurements/" + clazzWithoutModule + "/" + commit);
runFolderCopied.mkdirs();
System.out.println("Creating folder: " + runFolderCopied.mkdirs());
FileUtils.copyDirectory(commitFolder, new File(runFolderCopied, commit));
FileUtils.copyDirectory(predecessorFolder, new File(runFolderCopied, predecessor));
} else {
Expand Down

0 comments on commit aeb7e28

Please sign in to comment.