Skip to content

Commit

Permalink
Fixes issue 24868 Clean code: fix unlikely argument and remove some
Browse files Browse the repository at this point in the history
unused variables. ManagedBeanManagerImpl and
JdbcConnPoolAppStatsProvider need specific review.
(Fix checkstyle 'Line has trailing spaces')
  • Loading branch information
escay committed Mar 21, 2024
1 parent 88459ae commit bbd6bf7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -122,12 +122,12 @@ public boolean exists() {
if (exists != null) {
return exists.booleanValue();
}

exists = Boolean.FALSE;
try (InputStream is = archiveURL.openStream()) {
exists = Boolean.TRUE;
} catch (IOException e) {
// Ignore, exists is false.
// Ignore, exists is false.
}
return exists.booleanValue();
}
Expand Down

0 comments on commit bbd6bf7

Please sign in to comment.