Skip to content

Commit

Permalink
remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
cwensel committed Jul 14, 2009
1 parent e94f137 commit 8595a9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/cascading/flow/FlowStep.java
Expand Up @@ -206,11 +206,11 @@ JobConf getJobConf( JobConf parentConf ) throws IOException

private void initFromTraps( JobConf conf ) throws IOException
{
initFromTraps( conf, mapperTraps, true );
initFromTraps( conf, reducerTraps, false );
initFromTraps( conf, mapperTraps );
initFromTraps( conf, reducerTraps );
}

private void initFromTraps( JobConf conf, Map<String, Tap> traps, boolean isMapper ) throws IOException
private void initFromTraps( JobConf conf, Map<String, Tap> traps ) throws IOException
{
if( !traps.isEmpty() )
{
Expand Down

0 comments on commit 8595a9e

Please sign in to comment.