Attempt to fix NestedJarFile file lock issues on Windows

Update `NestedJarFile.close()` to call `super.close()` so that the outer
jar file is closed and files can hopefully be deleted on Windows.

See gh-37668
pull/37801/head
Phillip Webb 1 year ago
parent 6c24ea01f1
commit 5da31aca46

@ -373,6 +373,7 @@ public class NestedJarFile extends JarFile {
@Override
public void close() throws IOException {
super.close();
if (this.closed) {
return;
}

Loading…
Cancel
Save