remove extraneous udp console.log

and two tiny whitespace changes
This commit is contained in:
Dave Conway-Jones
2016-06-17 08:18:26 +01:00
parent 0411623857
commit 7fc056c8e3
4 changed files with 6 additions and 6 deletions

View File

@@ -112,7 +112,6 @@
$("#node-input-port").change(function() {
var portnew = $("#node-input-port").val();
if (portsInUse.hasOwnProperty($("#node-input-port").val())) {
console.log($("#node-input-port").val());
RED.notify(alreadyused+" "+$("#node-input-port").val(),"warn");
}
});

View File

@@ -83,7 +83,6 @@ module.exports = function(RED) {
});
node.on("close", function() {
console.log("ID=",node.id);
if (udpInputPortsInUse[node.port] === node.id) {
delete udpInputPortsInUse[node.port];
}