From b5bb83b70092e48a7ef3922e04b0a1ea8e0e36ad Mon Sep 17 00:00:00 2001 From: yflory Date: Thu, 8 Feb 2018 12:24:19 +0100 Subject: [PATCH] lint compliance --- customize.dist/messages.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/customize.dist/messages.js b/customize.dist/messages.js index 16128df9c..bffb95654 100755 --- a/customize.dist/messages.js +++ b/customize.dist/messages.js @@ -101,8 +101,8 @@ define(req, function(Util, Default, Language) { checkInObject(Default, translation, []); // Push the removals at the end missing.sort(function (a, b) { - if (a[2] === 0 && b[2] !== 0) return 1; - if (a[2] !== 0 && b[2] === 0) return -1; + if (a[2] === 0 && b[2] !== 0) { return 1; } + if (a[2] !== 0 && b[2] === 0) { return -1; } return 0; }); Array.prototype.push.apply(allMissing, missing); // Destructive concat