Browse Source

Remove superfluous 'new'

v0.7.4-release
Ryan Dahl 13 years ago
parent
commit
60e26668b3
  1. 2
      lib/child_process.js

2
lib/child_process.js

@ -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);

Loading…
Cancel
Save