From 78c57e1720995821d80009dd99698b3a34f52e93 Mon Sep 17 00:00:00 2001 From: Jens Geyer Date: Tue, 2 Dec 2014 21:22:04 +0100 Subject: [PATCH] THRIFT-2871 Missing semicolon in thrift.js Client: NodeJS Patch: Chi Vinh Le This closes #300 JSHint complains about missing semicolon. Might break older browser compatibility. --- lib/nodejs/lib/thrift/thrift.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nodejs/lib/thrift/thrift.js b/lib/nodejs/lib/thrift/thrift.js index a87c81ba2..89c789d9f 100644 --- a/lib/nodejs/lib/thrift/thrift.js +++ b/lib/nodejs/lib/thrift/thrift.js @@ -134,7 +134,7 @@ var TProtocolExceptionType = exports.TProtocolExceptionType = { BAD_VERSION: 4, NOT_IMPLEMENTED: 5, DEPTH_LIMIT: 6 -} +}; var TProtocolException = exports.TProtocolException = function(type, message) {