Skip to content

Commit

Permalink
[hotfix] Minor StreamGraphGenerator refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
kl0u committed Oct 1, 2020
1 parent c2e3399 commit 4fcd7d3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,10 @@ public static int getNewIterationNodeId() {
// we have loops, i.e. feedback edges.
private Map<Transformation<?>, Collection<Integer>> alreadyTransformed;

public StreamGraphGenerator(List<Transformation<?>> transformations, ExecutionConfig executionConfig, CheckpointConfig checkpointConfig) {
public StreamGraphGenerator(
final List<Transformation<?>> transformations,
final ExecutionConfig executionConfig,
final CheckpointConfig checkpointConfig) {
this.transformations = checkNotNull(transformations);
this.executionConfig = checkNotNull(executionConfig);
this.checkpointConfig = checkNotNull(checkpointConfig);
Expand Down

0 comments on commit 4fcd7d3

Please sign in to comment.