Browse Source

tls: remove dead code

Remove dead code. Forgotten in 76ddf06.
v0.9.3-release
Ben Noordhuis 12 years ago
parent
commit
7394e89ff6
  1. 6
      lib/tls.js

6
lib/tls.js

@ -959,12 +959,6 @@ SecurePair.prototype.destroy = function() {
if (!this._doneFlag) {
this._doneFlag = true;
if (this.ssl.timer) {
clearTimeout(this.ssl.timer);
this.ssl.timer = null;
}
this.ssl.error = null;
this.ssl.close();
this.ssl = null;

Loading…
Cancel
Save