diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2011-09-19 16:28:22 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2011-09-19 16:28:22 +0200 |
commit | 243c218c7a768a5800f729fad02e8a22220d91f1 (patch) | |
tree | a47764995ce46cc8b9c6f5c8f8bec349d02d6810 /lib/tls.js | |
parent | 12798c620d61a2e67f4cd76b774d4000affa43b0 (diff) | |
download | node-new-243c218c7a768a5800f729fad02e8a22220d91f1.tar.gz |
tls: remove superfluous setOptions() call
Diffstat (limited to 'lib/tls.js')
-rw-r--r-- | lib/tls.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/tls.js b/lib/tls.js index 63d6bd079a..6f26ffb455 100644 --- a/lib/tls.js +++ b/lib/tls.js @@ -856,9 +856,6 @@ function Server(/* [options], listener */) { if (listener) { this.on('secureConnection', listener); } - - // Handle option defaults: - this.setOptions(options); } util.inherits(Server, net.Server); |