Skip to content

Commit

Permalink
Issue #6276 - Support non-standard domains in SNI and X509.
Browse files Browse the repository at this point in the history
Fixed checkstyle issue.

Signed-off-by: Simone Bordet <[email protected]>
  • Loading branch information
sbordet committed May 20, 2021
1 parent 5ab4fc9 commit f840460
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private static boolean containsAtLeastTwoColons(String host)
{
int index = host.indexOf(':');
if (index >= 0)
index = host.indexOf(':', index + 1) ;
index = host.indexOf(':', index + 1);
return index > 0;
}

Expand Down

0 comments on commit f840460

Please sign in to comment.