From a154dd5be8540d20117ccdd9462434ff6ac02b46 Mon Sep 17 00:00:00 2001 From: Nico Kruber Date: Tue, 10 Jul 2018 17:25:18 +0200 Subject: [PATCH] [hotfix][checkstyle] fix checkstyle in PartitionRequestClientFactory --- .../io/network/netty/PartitionRequestClientFactory.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/PartitionRequestClientFactory.java b/flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/PartitionRequestClientFactory.java index 2e357c4510553..2df094b06e72a 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/PartitionRequestClientFactory.java +++ b/flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/PartitionRequestClientFactory.java @@ -18,8 +18,8 @@ package org.apache.flink.runtime.io.network.netty; -import org.apache.flink.runtime.io.network.NetworkClientHandler; import org.apache.flink.runtime.io.network.ConnectionID; +import org.apache.flink.runtime.io.network.NetworkClientHandler; import org.apache.flink.runtime.io.network.netty.exception.LocalTransportException; import org.apache.flink.runtime.io.network.netty.exception.RemoteTransportException; import org.apache.flink.runtime.io.network.partition.consumer.RemoteInputChannel; @@ -34,8 +34,8 @@ /** * Factory for {@link PartitionRequestClient} instances. - *

- * Instances of partition requests clients are shared among several {@link RemoteInputChannel} + * + *

Instances of partition requests clients are shared among several {@link RemoteInputChannel} * instances. */ class PartitionRequestClientFactory {