Commit 77b9dd90 authored by Phillip Webb's avatar Phillip Webb

Merge branch '2.2.x'

See gh-21127
parents 4f47b7b4 7d53f7d2
...@@ -115,6 +115,7 @@ public class JarFile extends java.util.jar.JarFile implements Iterable<java.util ...@@ -115,6 +115,7 @@ public class JarFile extends java.util.jar.JarFile implements Iterable<java.util
*/ */
JarFile(JarFile parent) throws IOException { JarFile(JarFile parent) throws IOException {
super(parent.rootFile.getFile()); super(parent.rootFile.getFile());
super.close();
this.parent = parent; this.parent = parent;
this.rootFile = parent.rootFile; this.rootFile = parent.rootFile;
this.pathFromRoot = parent.pathFromRoot; this.pathFromRoot = parent.pathFromRoot;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment