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

Commit

Permalink
Remove superfluous 'new'
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Dec 4, 2011
1 parent 1cf26e2 commit 60e2666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/child_process.js
Expand Up @@ -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);
Expand Down

0 comments on commit 60e2666

Please sign in to comment.