You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by jx...@apache.org on 2019/11/21 00:32:54 UTC

[helix] 05/05: Format long lines.

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

jxue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git

View the commit online:
https://github.com/apache/helix/commit/b857af74e5a323aa37f0bf0b6989c7f4b4a9961d

commit b857af74e5a323aa37f0bf0b6989c7f4b4a9961d
Author: Huizhi Lu <ih...@gmail.com>
AuthorDate: Thu Nov 7 10:32:51 2019 -0800

    Format long lines.
---
 .../test/java/org/apache/helix/spectator/TestRoutingDataCache.java  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/helix-core/src/test/java/org/apache/helix/spectator/TestRoutingDataCache.java b/helix-core/src/test/java/org/apache/helix/spectator/TestRoutingDataCache.java
index bf10bf4..2cfc62a 100644
--- a/helix-core/src/test/java/org/apache/helix/spectator/TestRoutingDataCache.java
+++ b/helix-core/src/test/java/org/apache/helix/spectator/TestRoutingDataCache.java
@@ -138,7 +138,8 @@ public class TestRoutingDataCache extends ZkStandAloneCMTestBase {
 
     // 1. Initial cache refresh.
     cache.refresh(accessor);
-    Map<String, Map<String, Map<String, CurrentState>>> currentStatesV1 = cache.getCurrentStatesMap();
+    Map<String, Map<String, Map<String, CurrentState>>> currentStatesV1 =
+        cache.getCurrentStatesMap();
 
     // Current states map is not empty and size equals to number of live instances.
     Assert.assertFalse(currentStatesV1.isEmpty());
@@ -153,7 +154,8 @@ public class TestRoutingDataCache extends ZkStandAloneCMTestBase {
     _participants[0].syncStop();
     cache.notifyDataChange(HelixConstants.ChangeType.LIVE_INSTANCE);
     cache.refresh(accessor);
-    Map<String, Map<String, Map<String, CurrentState>>> currentStatesV2 = cache.getCurrentStatesMap();
+    Map<String, Map<String, Map<String, CurrentState>>> currentStatesV2 =
+        cache.getCurrentStatesMap();
 
     // Current states cache should refresh and change.
     Assert.assertFalse(currentStatesV2.isEmpty());