You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by nk...@apache.org on 2018/07/12 09:49:49 UTC

[2/3] flink git commit: [hotfix][checkstyle] fix checkstyle in PartitionRequestClientFactory

[hotfix][checkstyle] fix checkstyle in PartitionRequestClientFactory


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/a154dd5b
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/a154dd5b
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/a154dd5b

Branch: refs/heads/master.staging
Commit: a154dd5be8540d20117ccdd9462434ff6ac02b46
Parents: 9e87e20
Author: Nico Kruber <ni...@data-artisans.com>
Authored: Tue Jul 10 17:25:18 2018 +0200
Committer: Nico Kruber <ni...@data-artisans.com>
Committed: Thu Jul 12 11:46:15 2018 +0200

----------------------------------------------------------------------
 .../io/network/netty/PartitionRequestClientFactory.java        | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/a154dd5b/flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/PartitionRequestClientFactory.java
----------------------------------------------------------------------
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 2e357c4..2df094b 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 @@ import java.util.concurrent.ConcurrentMap;
 
 /**
  * Factory for {@link PartitionRequestClient} instances.
- * <p>
- * Instances of partition requests clients are shared among several {@link RemoteInputChannel}
+ *
+ * <p>Instances of partition requests clients are shared among several {@link RemoteInputChannel}
  * instances.
  */
 class PartitionRequestClientFactory {