Skip to content

Commit

Permalink
remove mistakenly added event handler to exec
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomohito Nakayama committed Feb 21, 2016
1 parent cebf354 commit cfb4d82
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function filedExecuter( file ){
this.pass = addChildExecuterFunction(executerFactory(passExecuter,thisExecuter),this);
this.filter = addChildExecuterFunction(executerFactory(filterExecuter,thisExecuter),this);

this.exec = function( eh ){ filedExecute( file, thisExecuter.executeChild, eh ); };
this.exec = function(){ filedExecute( file, thisExecuter.executeChild ); };

};

Expand All @@ -61,7 +61,7 @@ function ioExecuter( userProcess, root ){
this.pass = addChildExecuterFunction(executerFactory(passExecuter,root),this);
this.filter = addChildExecuterFunction(executerFactory(filterExecuter,root),this);

this.exec = function( eh ){ root.exec( eh ) };
this.exec = function(){ root.exec() };

}

Expand All @@ -80,7 +80,7 @@ function copyExecuter( userProcess, root){
this.pass = addChildExecuterFunction(executerFactory(passExecuter,root),this);
this.filter = addChildExecuterFunction(executerFactory(filterExecuter,root),this);

this.exec = function( eh ){ root.exec( eh ) };
this.exec = function(){ root.exec() };

}

Expand All @@ -99,7 +99,7 @@ function linkExecuter( userProcess, root){
this.pass = addChildExecuterFunction(executerFactory(passExecuter,root),this);
this.filter = addChildExecuterFunction(executerFactory(filterExecuter,root),this);

this.exec = function( eh ){ root.exec( eh ) };
this.exec = function(){ root.exec() };

}

Expand All @@ -117,7 +117,7 @@ function passExecuter( userProcess, root){
this.pass = addChildExecuterFunction(executerFactory(passExecuter,root),this);
this.filter = addChildExecuterFunction(executerFactory(filterExecuter,root),this);

this.exec = function( eh ){ root.exec( eh ) };
this.exec = function(){ root.exec() };

}

Expand All @@ -135,7 +135,7 @@ function filterExecuter( userProcess, root){
this.pass = addChildExecuterFunction(executerFactory(passExecuter,root),this);
this.filter = addChildExecuterFunction(executerFactory(filterExecuter,root),this);

this.exec = function( eh ){ root.exec( eh ) };
this.exec = function(){ root.exec() };

}

Expand Down

0 comments on commit cfb4d82

Please sign in to comment.