Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdettman committed Oct 20, 2023
1 parent 0fca936 commit 295a9e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static void appendCipherSuiteDetail(StringBuilder sb, ProvSSLContextSpi context,
sb.append(Hex.toHexString(new byte[]{ (byte)cipherSuite }));
sb.append('}');

String name = context.getCipherSuiteName(cipherSuite);
String name = ProvSSLContextSpi.getCipherSuiteName(cipherSuite);
if (name == null)
{
sb.append('?');
Expand Down

0 comments on commit 295a9e4

Please sign in to comment.