Skip to content

Commit

Permalink
Illegal reflective access by com.sun.mail.util.SocketFetcher eclipse-…
Browse files Browse the repository at this point in the history
…ee4j#124

Co-authored-by: jmehrens <[email protected]>
Co-authored-by: icu5545 <[email protected]>
Signed-off-by: jmehrens <[email protected]>
  • Loading branch information
jmehrens committed Feb 13, 2024
1 parent e65419f commit 8aad327
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1048,11 +1048,11 @@ public boolean verify(String server, SSLSession ssls) {
} catch (CertificateParsingException ignore) {
logger.log(Level.FINEST, server, ignore);
} catch (IOException spue) {
throw new UncheckedIOException(spue);
throw new UncheckedIOException(toString() + " DENY", spue);
}

if (cert == null) {
throw new UncheckedIOException(
throw new UncheckedIOException(toString() + " DENY",
new SSLPeerUnverifiedException("null"));
}

Expand Down

0 comments on commit 8aad327

Please sign in to comment.