From 243c218c7a768a5800f729fad02e8a22220d91f1 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 19 Sep 2011 16:28:22 +0200 Subject: [PATCH] tls: remove superfluous setOptions() call --- lib/tls.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/tls.js b/lib/tls.js index 63d6bd079ae..6f26ffb4551 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);