mirror of https://github.com/grpc/grpc-java.git
core: fix indentation in MethodDescriptor
This commit is contained in:
parent
ca5a402fe6
commit
5379de726d
|
|
@ -166,9 +166,9 @@ public class MethodDescriptor<ReqT, RespT> {
|
||||||
|
|
||||||
private MethodDescriptor(
|
private MethodDescriptor(
|
||||||
MethodType type, String fullMethodName,
|
MethodType type, String fullMethodName,
|
||||||
Marshaller<ReqT> requestMarshaller,
|
Marshaller<ReqT> requestMarshaller,
|
||||||
Marshaller<RespT> responseMarshaller,
|
Marshaller<RespT> responseMarshaller,
|
||||||
boolean idempotent) {
|
boolean idempotent) {
|
||||||
this.type = Preconditions.checkNotNull(type, "type");
|
this.type = Preconditions.checkNotNull(type, "type");
|
||||||
this.fullMethodName = Preconditions.checkNotNull(fullMethodName, "fullMethodName");
|
this.fullMethodName = Preconditions.checkNotNull(fullMethodName, "fullMethodName");
|
||||||
this.requestMarshaller = Preconditions.checkNotNull(requestMarshaller, "requestMarshaller");
|
this.requestMarshaller = Preconditions.checkNotNull(requestMarshaller, "requestMarshaller");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue