streams: remove useless line

The removed line was removing a calllback that was never setup
in first place. 016afe2 forgot to remove this.
pull/24504/head
Soarez 2012-10-18 16:53:53 +01:00 committed by Ben Noordhuis
parent cb6d084d35
commit 72ce9baa75
1 changed files with 0 additions and 1 deletions

View File

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