net: small code cleanup
authorJan Schär <jscissr@gmail.com>
Fri, 20 Nov 2015 19:23:25 +0000 (20:23 +0100)
committerMyles Borins <mborins@us.ibm.com>
Tue, 19 Jan 2016 19:52:15 +0000 (11:52 -0800)
`options` is already a param of the function.

PR-URL: https://github.com/nodejs/node/pull/3943
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
lib/net.js

index 58c9a3b..f778043 100644 (file)
@@ -1081,7 +1081,6 @@ function Server(options, connectionListener) {
   EventEmitter.call(this);
 
   var self = this;
-  var options;
 
   if (typeof options === 'function') {
     connectionListener = options;