Fix missing and unnecessary semicolons

This commit is contained in:
SilentSpike
2018-09-01 17:20:42 +01:00
committed by Bryan Housel
parent 424bebf099
commit 1527bbb043
+2 -2
View File
@@ -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++) {