Skip to content

Commit 42d69c3

Browse files
committed
formatting fixed
1 parent 1ccf91b commit 42d69c3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/main/java/com/avast/grpc/jwt/server/JwtServerInterceptor.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ public <ReqT, RespT> ServerCall.Listener<ReqT> interceptCall(
4646
new Metadata());
4747
return new ServerCall.Listener<ReqT>() {};
4848
}
49-
return Contexts.interceptCall(Context.current().withValue(AccessTokenContextKey, token), call, headers, next);
49+
return Contexts.interceptCall(
50+
Context.current().withValue(AccessTokenContextKey, token), call, headers, next);
5051
}
5152
}

0 commit comments

Comments
 (0)