This is an automated email from the ASF dual-hosted git repository. ahuber pushed a commit to branch v3 in repository https://gitbox.apache.org/repos/asf/causeway.git
commit 5f1df626d73c5cf38454a9f2ec00e5afde0d6462 Author: Andi Huber <[email protected]> AuthorDate: Wed Aug 7 08:14:03 2024 +0200 Merge remote-tracking branch 'origin/master' into v3 --- commons/src/main/java/org/apache/causeway/commons/io/ZipUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons/src/main/java/org/apache/causeway/commons/io/ZipUtils.java b/commons/src/main/java/org/apache/causeway/commons/io/ZipUtils.java index 8c474a0d6e..d2e1a3c2a5 100644 --- a/commons/src/main/java/org/apache/causeway/commons/io/ZipUtils.java +++ b/commons/src/main/java/org/apache/causeway/commons/io/ZipUtils.java @@ -145,7 +145,7 @@ public class ZipUtils { var tempFile = File.createTempFile("causeway", "zip-utils"); try { zippedSource.tryReadAndWrite(DataSink.ofFile(tempFile), 4096); - try (FileSystem fs = FileSystems.newFileSystem(tempFile.toPath(), null)) { + try (FileSystem fs = FileSystems.newFileSystem(tempFile.toPath())) { try (Stream<Path> entries = Files.walk(fs.getPath("/"))) { final List<Path> filesInZip = entries.filter(Files::isRegularFile).collect(Collectors.toList()); for(Path path : filesInZip) {
