Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
AlchemyDing committed Nov 27, 2023
1 parent aa3c8f7 commit e1449a4
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
*/
public class ServerStreamHelper {

private static final ReferenceFieldUpdater<ServerCallImpl<?, ?>, ServerStream> STREAM_GETTER = Updaters
.newReferenceFieldUpdater(
ServerCallImpl.class,
"stream");
private static final ReferenceFieldUpdater<ServerCallImpl<?, ?>, ServerStream> STREAM_GETTER = Updaters
.newReferenceFieldUpdater(
ServerCallImpl.class,
"stream");

private static final ReferenceFieldUpdater<ForwardingServerCall.SimpleForwardingServerCall<?, ?>, ServerCall<?, ?>> SERVER_CALL_GETTER = Updaters
.newReferenceFieldUpdater(
ForwardingServerCall.SimpleForwardingServerCall.class,
"delegate");
.newReferenceFieldUpdater(
ForwardingServerCall.SimpleForwardingServerCall.class,
"delegate");

public static ServerStream getServerStream(final ServerCall<?, ?> call) {
ServerCall<?, ?> lastServerCall = call;
Expand Down

0 comments on commit e1449a4

Please sign in to comment.