Remove superfluous 'new'

This commit is contained in:
Ryan Dahl 2011-12-04 00:09:02 -08:00
parent 1cf26e2bf1
commit 60e26668b3

View File

@ -33,7 +33,7 @@ var Pipe;
function createPipe(ipc) {
// Lazy load
if (!Pipe) {
Pipe = new process.binding('pipe_wrap').Pipe;
Pipe = process.binding('pipe_wrap').Pipe;
}
return new Pipe(ipc);