You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ns...@apache.org on 2015/11/28 16:15:18 UTC

thrift git commit: Remove a line break that broke 'grep -v' in test/go/Makefile.am

Repository: thrift
Updated Branches:
  refs/heads/master a43063caa -> 6dab9bbeb


Remove a line break that broke 'grep -v' in test/go/Makefile.am


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/6dab9bbe
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/6dab9bbe
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/6dab9bbe

Branch: refs/heads/master
Commit: 6dab9bbeb520159d96126a44bc849aa1bd9c4209
Parents: a43063c
Author: Nobuaki Sukegawa <ns...@apache.org>
Authored: Sat Nov 28 22:27:16 2015 +0900
Committer: Nobuaki Sukegawa <ns...@apache.org>
Committed: Sat Nov 28 22:34:01 2015 +0900

----------------------------------------------------------------------
 test/ThriftTest.thrift | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/6dab9bbe/test/ThriftTest.thrift
----------------------------------------------------------------------
diff --git a/test/ThriftTest.thrift b/test/ThriftTest.thrift
index a58ed97..20929d4 100644
--- a/test/ThriftTest.thrift
+++ b/test/ThriftTest.thrift
@@ -110,8 +110,8 @@ struct Insanity
 struct CrazyNesting {
   1: string string_field,
   2: optional set<Insanity> set_field,
-  3: required list<map<set<i32> (python.immutable = ""),
-                       map<i32,set<list<map<Insanity,string>(python.immutable = "")> (python.immutable = "")>>>> list_field,
+  // Do not insert line break as test/go/Makefile.am is removing this line with pattern match
+  3: required list<map<set<i32> (python.immutable = ""), map<i32,set<list<map<Insanity,string>(python.immutable = "")> (python.immutable = "")>>>> list_field,
   4: binary binary_field
 }