You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2014/11/14 21:30:48 UTC

thrift git commit: THRIFT-2818 Trailing commas in array Client: Node.js Patch: Chi Vinh Le

Repository: thrift
Updated Branches:
  refs/heads/master e5ff9a860 -> 565ea0c49


THRIFT-2818 Trailing commas in array
Client: Node.js
Patch: Chi Vinh Le

This closes #263


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

Branch: refs/heads/master
Commit: 565ea0c497c78cc62a7c8c980992f10a3d278c20
Parents: e5ff9a8
Author: Jens Geyer <je...@apache.org>
Authored: Fri Nov 14 21:29:19 2014 +0100
Committer: Jens Geyer <je...@apache.org>
Committed: Fri Nov 14 21:29:19 2014 +0100

----------------------------------------------------------------------
 lib/nodejs/lib/thrift/thrift.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/565ea0c4/lib/nodejs/lib/thrift/thrift.js
----------------------------------------------------------------------
diff --git a/lib/nodejs/lib/thrift/thrift.js b/lib/nodejs/lib/thrift/thrift.js
index e02bb7d..a87c81b 100644
--- a/lib/nodejs/lib/thrift/thrift.js
+++ b/lib/nodejs/lib/thrift/thrift.js
@@ -35,14 +35,14 @@ var Type = exports.Type = {
   SET: 14,
   LIST: 15,
   UTF8: 16,
-  UTF16: 17,
+  UTF16: 17
 };
 
 exports.MessageType = {
   CALL: 1,
   REPLY: 2,
   EXCEPTION: 3,
-  ONEWAY: 4,
+  ONEWAY: 4
 };
 
 var TException = exports.TException = function(message) {