From fc677f440164957d69f04962e9e87578e3040cf7 Mon Sep 17 00:00:00 2001 From: cvlchinet Date: Tue, 2 Dec 2014 18:10:08 +0100 Subject: [PATCH] nodejs: Missing semicolon in thrift.js 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 a87c81ba259..89c789d9f32 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) {