Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Fix breakage introduced in de65ba7
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jun 18, 2012
1 parent de65ba7 commit 1df222f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/net.js
Expand Up @@ -236,7 +236,6 @@ Object.defineProperty(Socket.prototype, 'bufferSize', {


Socket.prototype.pause = function() {
if (this._paused) return;
this._paused = true;
if (this._connecting) {
// will actually pause once the handle is established.
Expand All @@ -249,7 +248,6 @@ Socket.prototype.pause = function() {


Socket.prototype.resume = function() {
if (!this._paused) return;
this._paused = false;
if (this._connecting) {
// will actually resume once the handle is established.
Expand Down

0 comments on commit 1df222f

Please sign in to comment.