This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 9201cb8369538654bde7da225faa881a17e75f10
Author: Andrey Zagrebin <azagre...@gmail.com>
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;
        }

Reply via email to