Skip to content

Commit

Permalink
Remove deprecated PartitioningStrategyConfig.setPartitionStrategy (#1…
Browse files Browse the repository at this point in the history
…5730)

Replacement is setPartitioningStrategy.
  • Loading branch information
taburet committed Oct 11, 2019
1 parent 993383d commit 16ef0ce
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,6 @@ public PartitioningStrategy getPartitioningStrategy() {
return partitioningStrategy;
}

@Deprecated
public PartitioningStrategyConfig setPartitionStrategy(PartitioningStrategy partitionStrategy) {
this.partitioningStrategy = partitionStrategy;
return this;
}

public PartitioningStrategyConfig setPartitioningStrategy(PartitioningStrategy partitionStrategy) {
this.partitioningStrategy = partitionStrategy;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ public PartitioningStrategyConfig setPartitioningStrategyClass(String partitionS
throw new UnsupportedOperationException("This config is read-only");
}

@Override
public PartitioningStrategyConfig setPartitionStrategy(PartitioningStrategy partitionStrategy) {
throw new UnsupportedOperationException("This config is read-only");
}

@Override
public PartitioningStrategyConfig setPartitioningStrategy(PartitioningStrategy partitionStrategy) {
throw new UnsupportedOperationException("This config is read-only");
Expand Down

0 comments on commit 16ef0ce

Please sign in to comment.