Merge linting error fixes into i18n branch of n-r-n

This commit is contained in:
dceejay
2015-06-16 14:38:36 +01:00
parent da209a6b66
commit ba0e2c3796
9 changed files with 73 additions and 85 deletions

View File

@@ -20,7 +20,7 @@ module.exports = function(RED) {
var hashFieldRE = /^([^=]+)=(.*)$/;
var redisConnectionPool = function() {
var redisConnectionPool = (function() {
var connections = {};
var obj = {
get: function(host,port) {
@@ -43,12 +43,12 @@ module.exports = function(RED) {
clearTimeout(connection.retry_timer);
connection.end();
}
delete connections[connection._id];
delete connections[connection._id];
}
}
};
return obj;
}();
}());
function RedisOutNode(n) {