fix(copypasta): syntax error fixed

This commit is contained in:
Damian Mee 2014-11-07 01:59:08 +01:00
parent bd3d51b9f2
commit 320a8037cc

View file

@ -160,10 +160,6 @@ exports.configure = function configure(config) {
if (newTrader === null) stopTrader(); if (newTrader === null) stopTrader();
else startTrader(); else startTrader();
} }
// NOTE: temp solution
if (temporaryName === null)
temporaryName = require('./temporary_name');
); );
// ID VERIFIER [optional] configure (or load) // ID VERIFIER [optional] configure (or load)
@ -171,6 +167,10 @@ exports.configure = function configure(config) {
idVerifierPlugin, idVerifierPlugin,
'idVerifier' 'idVerifier'
); );
// NOTE: temp solution
if (temporaryName === null)
temporaryName = require('./temporary_name');
}; };
exports.getCachedConfig = function getCachedConfig() { exports.getCachedConfig = function getCachedConfig() {
return cachedConfig; return cachedConfig;