From 25a2ec1ef3d063edb4d6d62260937c20f2c5a626 Mon Sep 17 00:00:00 2001 From: zpencer Date: Thu, 31 May 2018 18:14:44 -0700 Subject: [PATCH] core: fix ServerBuilder.setBinaryLog javadoc (#4514) The javadoc should refer to server not channel. --- core/src/main/java/io/grpc/ServerBuilder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/io/grpc/ServerBuilder.java b/core/src/main/java/io/grpc/ServerBuilder.java index 61238065e0..25f52344d4 100644 --- a/core/src/main/java/io/grpc/ServerBuilder.java +++ b/core/src/main/java/io/grpc/ServerBuilder.java @@ -226,7 +226,7 @@ public abstract class ServerBuilder> { } /** - * Sets the BinaryLog object that this server should log to. The channel does not take + * Sets the BinaryLog object that this server should log to. The server does not take * ownership of the object, and users are responsible for calling {@link BinaryLog#close()}. * * @param binaryLog the object to provide logging.