mirror of https://github.com/grpc/grpc-java.git
examples: Fix comment in HelloWorldClient
This client talks to HelloWorld server and not to the route guide one.
This commit is contained in:
parent
2b703342ae
commit
4df4d06f78
|
|
@ -41,7 +41,7 @@ public class HelloWorldClient {
|
||||||
.build());
|
.build());
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Construct client for accessing RouteGuide server using the existing channel. */
|
/** Construct client for accessing HelloWorld server using the existing channel. */
|
||||||
HelloWorldClient(ManagedChannel channel) {
|
HelloWorldClient(ManagedChannel channel) {
|
||||||
this.channel = channel;
|
this.channel = channel;
|
||||||
blockingStub = GreeterGrpc.newBlockingStub(channel);
|
blockingStub = GreeterGrpc.newBlockingStub(channel);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue