You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2021/05/19 13:51:44 UTC

[GitHub] [ignite] nizhikov commented on a change in pull request #9106: IGNITE-14714 LineLength checkstyle rule added

nizhikov commented on a change in pull request #9106:
URL: https://github.com/apache/ignite/pull/9106#discussion_r635259625



##########
File path: modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/internal/ConnectionClientPool.java
##########
@@ -670,8 +679,11 @@ public boolean removeNodeClient(UUID nodeId, GridCommunicationClient rmvClient)
         for (; ; ) {
             GridCommunicationClient[] curClients = clients.get(nodeId);
 
-            if (curClients == null || rmvClient.connectionIndex() >= curClients.length || curClients[rmvClient.connectionIndex()] != rmvClient)
+            if (curClients == null
+                || rmvClient.connectionIndex() >= curClients.length
+                || curClients[rmvClient.connectionIndex()] != rmvClient) {

Review comment:
       Fixed




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org