Skip to content

Commit

Permalink
80 characters limit
Browse files Browse the repository at this point in the history
  • Loading branch information
gasbytes committed Sep 26, 2024
1 parent a4dfa7e commit 58ffe89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/java/com/wolfssl/provider/jsse/WolfSSLEngineHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ protected WolfSSLEngineHelper(WolfSSLSession ssl, WolfSSLAuthStore store,
WolfSSLParameters params, int port, InetAddress peerAddr)
throws WolfSSLException {

if (params == null || ssl == null || store == null || peerAddr == null || port < 0) {
if (params == null || ssl == null || store == null ||
peerAddr == null || port < 0) {
throw new WolfSSLException("Bad argument");
}

Expand Down

0 comments on commit 58ffe89

Please sign in to comment.