diff --git a/core/src/main/java/io/grpc/MethodDescriptor.java b/core/src/main/java/io/grpc/MethodDescriptor.java index 2366ff8c53..b1c1d63ebc 100644 --- a/core/src/main/java/io/grpc/MethodDescriptor.java +++ b/core/src/main/java/io/grpc/MethodDescriptor.java @@ -166,9 +166,9 @@ public class MethodDescriptor { private MethodDescriptor( MethodType type, String fullMethodName, - Marshaller requestMarshaller, - Marshaller responseMarshaller, - boolean idempotent) { + Marshaller requestMarshaller, + Marshaller responseMarshaller, + boolean idempotent) { this.type = Preconditions.checkNotNull(type, "type"); this.fullMethodName = Preconditions.checkNotNull(fullMethodName, "fullMethodName"); this.requestMarshaller = Preconditions.checkNotNull(requestMarshaller, "requestMarshaller");