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 8735a5bc0de4fbe924ae6f9a4c1cc62459206570 Author: Andrey Zagrebin <[email protected]> AuthorDate: Mon Jul 29 17:49:24 2019 +0300 [hotfix][tests] fix codestyle issues in NettyShuffleDescriptorBuilder --- .../org/apache/flink/runtime/util/NettyShuffleDescriptorBuilder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/util/NettyShuffleDescriptorBuilder.java b/flink-runtime/src/test/java/org/apache/flink/runtime/util/NettyShuffleDescriptorBuilder.java index 2d58d03..052fefb 100644 --- a/flink-runtime/src/test/java/org/apache/flink/runtime/util/NettyShuffleDescriptorBuilder.java +++ b/flink-runtime/src/test/java/org/apache/flink/runtime/util/NettyShuffleDescriptorBuilder.java @@ -38,8 +38,8 @@ public class NettyShuffleDescriptorBuilder { private ResourceID producerLocation = ResourceID.generate(); private ResultPartitionID id = new ResultPartitionID(); private InetAddress address = InetAddress.getLoopbackAddress(); - private int dataPort = 0; - private int connectionIndex = 0; + private int dataPort; + private int connectionIndex; public NettyShuffleDescriptorBuilder setProducerLocation(ResourceID producerLocation) { this.producerLocation = producerLocation; return this;
