Skip to content

Commit 58ffe89

Browse files
committed
80 characters limit
1 parent a4dfa7e commit 58ffe89

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/java/com/wolfssl/provider/jsse/WolfSSLEngineHelper.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ protected WolfSSLEngineHelper(WolfSSLSession ssl, WolfSSLAuthStore store,
165165
WolfSSLParameters params, int port, InetAddress peerAddr)
166166
throws WolfSSLException {
167167

168-
if (params == null || ssl == null || store == null || peerAddr == null || port < 0) {
168+
if (params == null || ssl == null || store == null ||
169+
peerAddr == null || port < 0) {
169170
throw new WolfSSLException("Bad argument");
170171
}
171172

0 commit comments

Comments
 (0)