aboutsummaryrefslogtreecommitdiffhomepage
path: root/java
diff options
context:
space:
mode:
authorGravatar Tim Emiola <temiola@google.com>2015-02-19 07:30:43 -0800
committerGravatar Tim Emiola <temiola@google.com>2015-02-19 07:52:13 -0800
commit5aa9eeba547205b309c66aed97253b4fb670fa60 (patch)
treeb238338110ca9444b6f42e0beafd4f9a94dba766 /java
parent381faf3dec1b9253154afabc1b0a1db65fb47ced (diff)
Removes the unused protos, updates the README to reflect the protos in use
Diffstat (limited to 'java')
-rw-r--r--java/src/main/proto/helloworld.proto22
1 files changed, 0 insertions, 22 deletions
diff --git a/java/src/main/proto/helloworld.proto b/java/src/main/proto/helloworld.proto
deleted file mode 100644
index da5c3a1d85..0000000000
--- a/java/src/main/proto/helloworld.proto
+++ /dev/null
@@ -1,22 +0,0 @@
-syntax = "proto3";
-
-option java_package = "ex.grpc";
-
-package helloworld;
-
-// The request message containing the user's name.
-message HelloRequest {
- optional string name = 1;
-}
-
-// The response message containing the greetings
-message HelloReply {
- optional string message = 1;
-}
-
-// The greeting service definition.
-service Greetings {
- // Sends a greeting
- rpc hello (HelloRequest) returns (HelloReply) {
- }
-}