Use strict equalities in make.js, external/* and extensions/*

This commit is contained in:
Tim van der Meij 2014-08-01 22:26:27 +02:00
parent 00eea3ddb9
commit c29faaa22d
4 changed files with 4 additions and 4 deletions

View file

@ -145,7 +145,7 @@ function startup(aData, aReason) {
}
function shutdown(aData, aReason) {
if (aReason == APP_SHUTDOWN) {
if (aReason === APP_SHUTDOWN) {
return;
}
var ioService = Services.io;