Removed a default value I missed

This commit is contained in:
murgatroid99 2015-05-11 13:38:26 -07:00
parent 8b05c4d6b3
commit dccd4f031c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ package examples;
// Protocol type definitions
message StockRequest {
string symbol = 1;
int32 num_trades_to_watch = 2 [default=0];
int32 num_trades_to_watch = 2;
}
message StockReply {