From dccd4f031c587697329f2d754b8d10634d805b51 Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Mon, 11 May 2015 13:38:26 -0700 Subject: [PATCH] Removed a default value I missed --- examples/stock.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/stock.proto b/examples/stock.proto index de7ee939..5ee2bcbc 100644 --- a/examples/stock.proto +++ b/examples/stock.proto @@ -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 {