Skip to content

Commit

Permalink
Merge branch 'jetty-12.0.x' into jetty-12.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
olamy committed Oct 23, 2024
2 parents a8bb846 + 67d4825 commit c457132
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,9 @@ public static void unzip(Path archive, Path outputDir) throws IOException
}
}
}
catch (FileAlreadyExistsException | FileSystemAlreadyExistsException e)
catch (FileSystemAlreadyExistsException | FileAlreadyExistsException e)
{
LOG.warn("ignore FileAlreadyExistsException: archiveURI {}, outputDir {}", archiveURI, outputDir);
LOG.warn("ignore {}: archiveURI {}, outputDir {}", e.getClass().getSimpleName(), archiveURI, outputDir);
}
}

Expand Down

0 comments on commit c457132

Please sign in to comment.