Skip to content

Commit

Permalink
Change post review
Browse files Browse the repository at this point in the history
  • Loading branch information
janbartel committed Nov 28, 2023
1 parent 70afc89 commit c44c319
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,8 @@ public void scanJars(final WebAppContext context, Collection<Resource> jars, boo
{
try (ResourceFactory.Closeable scanResourceFactory = ResourceFactory.closeable())
{
for (Resource r : jars)
for (Resource dir : jars)
{
Resource dir = r;

try
{
//If not already a directory, convert by mounting as jar file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,10 +362,8 @@ public void scanJars(final WebAppContext context, Collection<Resource> jars, boo
{
try (ResourceFactory.Closeable scanResourceFactory = ResourceFactory.closeable())
{
for (Resource r : jars)
for (Resource dir : jars)
{
Resource dir = r;

try
{
//if not already a directory, convert it by mounting as jar file
Expand Down

0 comments on commit c44c319

Please sign in to comment.