This is an automated email from the ASF dual-hosted git repository. zhijiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit e0617be01454b663de5e21ae73f0f1d61b504da0 Author: Andrey Zagrebin <[email protected]> AuthorDate: Mon Jul 29 17:39:52 2019 +0300 [hotfix][tests] fix codestyle issues in ResultPartitionBuilder --- .../flink/runtime/io/network/partition/ResultPartitionBuilder.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/io/network/partition/ResultPartitionBuilder.java b/flink-runtime/src/test/java/org/apache/flink/runtime/io/network/partition/ResultPartitionBuilder.java index 27eaab8..4bb1a85 100644 --- a/flink-runtime/src/test/java/org/apache/flink/runtime/io/network/partition/ResultPartitionBuilder.java +++ b/flink-runtime/src/test/java/org/apache/flink/runtime/io/network/partition/ResultPartitionBuilder.java @@ -113,7 +113,7 @@ public class ResultPartitionBuilder { return this; } - public ResultPartitionBuilder setNetworkBufferSize(int networkBufferSize) { + ResultPartitionBuilder setNetworkBufferSize(int networkBufferSize) { this.networkBufferSize = networkBufferSize; return this; } @@ -129,7 +129,8 @@ public class ResultPartitionBuilder { return this; } - public ResultPartitionBuilder setBoundedBlockingSubpartitionType(BoundedBlockingSubpartitionType blockingSubpartitionType) { + ResultPartitionBuilder setBoundedBlockingSubpartitionType( + @SuppressWarnings("SameParameterValue") BoundedBlockingSubpartitionType blockingSubpartitionType) { this.blockingSubpartitionType = blockingSubpartitionType; return this; }
