Skip to content

Commit

Permalink
Merge pull request quarkusio#34794 from kpapakyriakos/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Jul 18, 2023
2 parents 7ed4b98 + 5f6fe61 commit 11f4ee5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,11 @@ public void close() {
final JarFile zipFileLocal = this.zipFile;
if (zipFileLocal != null) {
try {
this.zipFile = null;
zipFileLocal.close();
} catch (IOException e) {
} catch (Throwable e) {
//ignore
}
this.zipFile = null;
}
} finally {
writeLock.unlock();
Expand Down

0 comments on commit 11f4ee5

Please sign in to comment.