Skip to content

Commit

Permalink
Merge pull request #6004 from square/jwilson.0428.checkstyle__
Browse files Browse the repository at this point in the history
Fix a checkstyle issue (3.14.x branch)
  • Loading branch information
swankjesse authored Apr 29, 2020
2 parents 9150f81 + fc88648 commit f6aa71f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ public void configureTlsExtensions(SSLSocket sslSocket, String hostname,
return protocol;
} catch (InvocationTargetException e) {
if (e.getCause() instanceof UnsupportedOperationException) {
// Handle UnsupportedOperationException as it is defined in the public API
// https://docs.oracle.com/javase/9/docs/api/javax/net/ssl/SSLSocket.html#getApplicationProtocol--
// Handle UnsupportedOperationException as it is defined in the getApplicationProtocol API.
// https://docs.oracle.com/javase/9/docs/api/javax/net/ssl/SSLSocket.html
return null;
}

Expand Down

0 comments on commit f6aa71f

Please sign in to comment.