Skip to content

Commit

Permalink
Do not shadow parent class fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Koval committed Feb 19, 2018
1 parent 59bc2b9 commit e8f6e6d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,16 @@

public class LocalVariable extends Expression
{
private final TypeReference type;
private final String name;
private final int index;

LocalVariable( TypeReference type, String name, int index )
{
super( type );
this.type = type;
this.name = name;
this.index = index;
}

@Override
public TypeReference type()
{
return type;
}

public String name()
{
return name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public abstract class ProcessorStep<T> extends AbstractStep<T>
private TaskExecutor<Sender> executor;
// max processors for this step, zero means unlimited, or rather config.maxNumberOfProcessors()
private final int maxProcessors;
private final Configuration config;

// Time stamp for when we processed the last queued batch received from upstream.
// Useful for tracking how much time we spend waiting for batches from upstream.
Expand All @@ -56,7 +55,6 @@ protected ProcessorStep( StageControl control, String name, Configuration config
StatsProvider... additionalStatsProviders )
{
super( control, name, config, additionalStatsProviders );
this.config = config;
this.maxProcessors = maxProcessors;
}

Expand Down

0 comments on commit e8f6e6d

Please sign in to comment.