Remove superfluous 'new'
This commit is contained in:
parent
1cf26e2bf1
commit
60e26668b3
@ -33,7 +33,7 @@ var Pipe;
|
|||||||
function createPipe(ipc) {
|
function createPipe(ipc) {
|
||||||
// Lazy load
|
// Lazy load
|
||||||
if (!Pipe) {
|
if (!Pipe) {
|
||||||
Pipe = new process.binding('pipe_wrap').Pipe;
|
Pipe = process.binding('pipe_wrap').Pipe;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new Pipe(ipc);
|
return new Pipe(ipc);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user