Skip to content

Commit

Permalink
Merge pull request #1391 from eed3si9n/wip/zip_error
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Sep 6, 2024
2 parents 6a75537 + 4c190b2 commit 1899979
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@ public int hashCode() {
IndexNode child; // 1st child
}

private static void zerror(String msg) {
throw new ZipError(msg);
private static void zerror(String msg) throws ZipException {
throw new ZipException(msg);
}

private void buildNodeTree() {
Expand Down

0 comments on commit 1899979

Please sign in to comment.