From 075d78e8e636e1d1b4aa7eebfcb76dc4b946835e Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 22 Jul 2019 17:38:23 -0400 Subject: [PATCH] Remove trailing commas in function parameter lists Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/681 --- src/js/scriptlet-filtering.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/scriptlet-filtering.js b/src/js/scriptlet-filtering.js index b1cd51419..be98e80b6 100644 --- a/src/js/scriptlet-filtering.js +++ b/src/js/scriptlet-filtering.js @@ -396,12 +396,12 @@ out.unshift( '(function() {', '// >>>> start of private namespace', - '', + '' ); out.push( '', '// <<<< end of private namespace', - '})();', + '})();' ); return out.join('\n');