Skip to content

Commit

Permalink
ODP-1689|HDDS-10131 Fix TestTarContainerPacker failure with Java 11+
Browse files Browse the repository at this point in the history
  • Loading branch information
dishtikundra committed Jul 18, 2024
1 parent 92c7206 commit f159867
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ private File writeDbFile(

private File writeSingleFile(Path parentPath, String fileName,
String content) throws IOException {
Path path = parentPath.resolve(fileName);
Path path = parentPath.resolve(fileName).normalize();
Files.createDirectories(path.getParent());
File file = path.toFile();
FileOutputStream fileStream = new FileOutputStream(file);
Expand Down

0 comments on commit f159867

Please sign in to comment.