core: fix indentation in MethodDescriptor

This commit is contained in:
Carl Mastrangelo 2016-09-07 17:40:21 -07:00
parent ca5a402fe6
commit 5379de726d
1 changed files with 3 additions and 3 deletions

View File

@ -166,9 +166,9 @@ public class MethodDescriptor<ReqT, RespT> {
private MethodDescriptor(
MethodType type, String fullMethodName,
Marshaller<ReqT> requestMarshaller,
Marshaller<RespT> responseMarshaller,
boolean idempotent) {
Marshaller<ReqT> requestMarshaller,
Marshaller<RespT> responseMarshaller,
boolean idempotent) {
this.type = Preconditions.checkNotNull(type, "type");
this.fullMethodName = Preconditions.checkNotNull(fullMethodName, "fullMethodName");
this.requestMarshaller = Preconditions.checkNotNull(requestMarshaller, "requestMarshaller");