From 11cfdf71093b15f4bee731dff527b8518a15ef05 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 --- src/node/examples/stock.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/examples/stock.proto b/src/node/examples/stock.proto index de7ee939e24..5ee2bcbce66 100644 --- a/src/node/examples/stock.proto +++ b/src/node/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 {