aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/bin
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-05-13 14:52:15 -0700
committerGravatar Yang Gao <yangg@google.com>2015-05-13 14:52:15 -0700
commit5cb790285036560695534817d6a30905d9aefb23 (patch)
treead08840dfce8c13df9c327e01ba0e523f803db31 /src/ruby/bin
parent0fff02c3ba5e2050d079bcb712fec3c99c03d22a (diff)
remove redudant optional keyword in proto3
Diffstat (limited to 'src/ruby/bin')
-rwxr-xr-xsrc/ruby/bin/math.proto14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ruby/bin/math.proto b/src/ruby/bin/math.proto
index e34ad5e967..311e148c02 100755
--- a/src/ruby/bin/math.proto
+++ b/src/ruby/bin/math.proto
@@ -33,25 +33,25 @@ syntax = "proto3";
package math;
message DivArgs {
- optional int64 dividend = 1;
- optional int64 divisor = 2;
+ int64 dividend = 1;
+ int64 divisor = 2;
}
message DivReply {
- optional int64 quotient = 1;
- optional int64 remainder = 2;
+ int64 quotient = 1;
+ int64 remainder = 2;
}
message FibArgs {
- optional int64 limit = 1;
+ int64 limit = 1;
}
message Num {
- optional int64 num = 1;
+ int64 num = 1;
}
message FibReply {
- optional int64 count = 1;
+ int64 count = 1;
}
service Math {