Skip to content

Commit

Permalink
[hotfix] Fix compile error in DataStreamV2SinkTransformation
Browse files Browse the repository at this point in the history
  • Loading branch information
reswqa committed Apr 1, 2024
1 parent 2876249 commit d271495
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void setChainingStrategy(ChainingStrategy strategy) {
}

@Override
public List<Transformation<?>> getTransitivePredecessors() {
protected List<Transformation<?>> getTransitivePredecessorsInternal() {
final List<Transformation<?>> result = Lists.newArrayList();
result.add(this);
result.addAll(input.getTransitivePredecessors());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public TestingTransformation(String name, TypeInformation<T> outputType, int par
}

@Override
public List<Transformation<?>> getTransitivePredecessors() {
protected List<Transformation<?>> getTransitivePredecessorsInternal() {
return Collections.emptyList();
}

Expand Down

0 comments on commit d271495

Please sign in to comment.