THRIFT-2871 Missing semicolon in thrift.js
Client: NodeJS
Patch: Chi Vinh Le <cvl@chinet.info>
This closes #300
JSHint complains about missing semicolon. Might break older browser compatibility.
diff --git a/lib/nodejs/lib/thrift/thrift.js b/lib/nodejs/lib/thrift/thrift.js
index a87c81b..89c789d 100644
--- a/lib/nodejs/lib/thrift/thrift.js
+++ b/lib/nodejs/lib/thrift/thrift.js
@@ -134,7 +134,7 @@
BAD_VERSION: 4,
NOT_IMPLEMENTED: 5,
DEPTH_LIMIT: 6
-}
+};
var TProtocolException = exports.TProtocolException = function(type, message) {