Skip to content

Commit 5379de7

Browse files
core: fix indentation in MethodDescriptor
1 parent ca5a402 commit 5379de7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/main/java/io/grpc/MethodDescriptor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ public static <RequestT, ResponseT> MethodDescriptor<RequestT, ResponseT> create
166166

167167
private MethodDescriptor(
168168
MethodType type, String fullMethodName,
169-
Marshaller<ReqT> requestMarshaller,
170-
Marshaller<RespT> responseMarshaller,
171-
boolean idempotent) {
169+
Marshaller<ReqT> requestMarshaller,
170+
Marshaller<RespT> responseMarshaller,
171+
boolean idempotent) {
172172
this.type = Preconditions.checkNotNull(type, "type");
173173
this.fullMethodName = Preconditions.checkNotNull(fullMethodName, "fullMethodName");
174174
this.requestMarshaller = Preconditions.checkNotNull(requestMarshaller, "requestMarshaller");

0 commit comments

Comments
 (0)