From 99e7873d6c34d80aa754a46131cd3371322be776 Mon Sep 17 00:00:00 2001 From: Michael Rawlings Date: Tue, 29 Nov 2016 15:10:59 -0800 Subject: [PATCH] remove unnecessary semicolon --- runtime/deprecate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/deprecate.js b/runtime/deprecate.js index 2c1f451d7a..73557f2781 100644 --- a/runtime/deprecate.js +++ b/runtime/deprecate.js @@ -30,7 +30,7 @@ function warn(message) { messageCounts[message]++; try { stack = new Error().stack.split('\n').slice(4).join('\n'); - } catch(e) {}; + } catch(e) {} logger.warn(red('WARNING!!') + '\n' + message + '\n' + grey(stack || '')); }