Skip to content

Commit

Permalink
Update Main.java
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Nov 6, 2022
1 parent ff1cad9 commit ef975f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testng-core/src/main/java/org/testng/reporters/jq/Main.java
Expand Up @@ -92,7 +92,8 @@ public void generateReport(
}
File fileToCopy = new File(outputDirectory, fileName);
fileToCopy.getParentFile().mkdirs();
java.nio.file.Files.copy(is, fileToCopy.toPath(), java.nio.file.StandardCopyOption.REPLACE_EXISTING);
java.nio.file.Files.copy(
is, fileToCopy.toPath(), java.nio.file.StandardCopyOption.REPLACE_EXISTING);
}
}
all = Files.readFile(header);
Expand Down

0 comments on commit ef975f1

Please sign in to comment.