Skip to content

Commit be92f57

Browse files
committed
Unwrap line
1 parent 0617fd0 commit be92f57

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

okhttp/src/main/java/io/grpc/okhttp/OkHttpClientTransport.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,8 +547,7 @@ void streamReadyToStart(OkHttpClientStream clientStream, String authority) {
547547

548548
private Status verifyAuthority(String authority) {
549549
Status authorityVerificationResult;
550-
if (hostnameVerifier.verify(
551-
authority, ((SSLSocket) socket).getSession())) {
550+
if (hostnameVerifier.verify(authority, ((SSLSocket) socket).getSession())) {
552551
authorityVerificationResult = Status.OK;
553552
} else {
554553
authorityVerificationResult = Status.UNAVAILABLE.withDescription(String.format(

0 commit comments

Comments
 (0)