Skip to content

Commit df493dc

Browse files
committed
long line and comments test
1 parent e176e96 commit df493dc

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1954,7 +1954,7 @@ public synchronized SSLParameters getSSLParameters() {
19541954
* Has the underlying WOLFSSL / WolfSSLSession been resumed / reused.
19551955
* This calls down to native wolfSSL_session_reused()
19561956
*
1957-
* NON-STANDARD API, not part of JSSE. Must cast SSLSocket back
1957+
* NON-STANDARD API, not part of JSSE. Must cast SSLSocket backfhdjskalfhdjkalfdjkalf
19581958
* to WolfSSLSocke to use.
19591959
*
19601960
* @return true if session has been resumed, otherwise false
@@ -1965,10 +1965,11 @@ public synchronized boolean sessionResumed() throws SSLException {
19651965
if (this.ssl != null) {
19661966
try {
19671967
int resume = this.ssl.sessionReused();
1968-
if (resume == 1) {
1968+
if (resume == 1) {
19691969
return true;
19701970
}
1971-
} catch (IllegalStateException | WolfSSLJNIException e) {
1971+
// single line comment check
1972+
} catch (IllegalStateException | WolfSSLJNIException e) {
19721973
throw new SSLException(e);
19731974
}
19741975
}

0 commit comments

Comments
 (0)