DB.js: remove else clause, since we are already exiting early

No functional changes.
This commit is contained in:
muxator 2020-03-24 23:26:19 +01:00
parent 3c78ada8da
commit 39f271bfed

View file

@ -45,7 +45,8 @@ exports.init = function() {
console.error("ERROR: Problem while initalizing the database"); console.error("ERROR: Problem while initalizing the database");
console.error(err.stack ? err.stack : err); console.error(err.stack ? err.stack : err);
process.exit(1); process.exit(1);
} else { }
// everything ok, set up Promise-based methods // everything ok, set up Promise-based methods
['get', 'set', 'findKeys', 'getSub', 'setSub', 'remove', 'doShutdown'].forEach(fn => { ['get', 'set', 'findKeys', 'getSub', 'setSub', 'remove', 'doShutdown'].forEach(fn => {
exports[fn] = util.promisify(db[fn].bind(db)); exports[fn] = util.promisify(db[fn].bind(db));
@ -67,7 +68,6 @@ exports.init = function() {
// exposed for those callers that need the underlying raw API // exposed for those callers that need the underlying raw API
exports.db = db; exports.db = db;
resolve(); resolve();
}
}); });
}); });
} }