streams: remove useless line

The removed line was removing a calllback that was never setup
in first place. 016afe2 forgot to remove this.
This commit is contained in:
Soarez 2012-10-18 16:53:53 +01:00 committed by Ben Noordhuis
parent cb6d084d35
commit 72ce9baa75

View File

@ -99,7 +99,6 @@ Stream.prototype.pipe = function(dest, options) {
source.removeListener('end', cleanup);
source.removeListener('close', cleanup);
dest.removeListener('end', cleanup);
dest.removeListener('close', cleanup);
}