From 1527bbb0432a514c2685ddb50f7d96daa948957f Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Sat, 1 Sep 2018 17:20:42 +0100 Subject: [PATCH] Fix missing and unnecessary semicolons --- modules/util/keepRight/keepRight_error.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/util/keepRight/keepRight_error.js b/modules/util/keepRight/keepRight_error.js index b9fda053b..137e9692b 100644 --- a/modules/util/keepRight/keepRight_error.js +++ b/modules/util/keepRight/keepRight_error.js @@ -82,8 +82,8 @@ export function parseErrorDescriptions(entity) { if (!errorMatch) { // TODO: Remove, for regex dev testing console.log('Unmatched:', errorType, errorDescription, errorRe); - return - }; + return; + } // index 0 is the whole match, groups start from 1 for (var i = 1; i < errorMatch.length; i++) {