Skip to content

Commit 6611e58

Browse files
committed
remove extra vars
1 parent 8ee68b9 commit 6611e58

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

server/src/test/java/org/elasticsearch/cluster/coordination/CoordinationStateTests.java

+12-12
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,17 @@
4343

4444
public class CoordinationStateTests extends ESTestCase {
4545

46-
DiscoveryNode node1;
47-
DiscoveryNode node2;
48-
DiscoveryNode node3;
46+
private DiscoveryNode node1;
47+
private DiscoveryNode node2;
48+
private DiscoveryNode node3;
4949

50-
ClusterState initialStateNode1;
51-
ClusterState initialStateNode2;
52-
ClusterState initialStateNode3;
50+
private ClusterState initialStateNode1;
5351

54-
PersistedState ps1;
52+
private PersistedState ps1;
5553

56-
CoordinationState cs1;
57-
CoordinationState cs2;
58-
CoordinationState cs3;
54+
private CoordinationState cs1;
55+
private CoordinationState cs2;
56+
private CoordinationState cs3;
5957

6058
@Before
6159
public void setupNodes() {
@@ -64,8 +62,10 @@ public void setupNodes() {
6462
node3 = createNode("node3");
6563

6664
initialStateNode1 = clusterState(0L, 0L, node1, VotingConfiguration.EMPTY_CONFIG, VotingConfiguration.EMPTY_CONFIG, 42L);
67-
initialStateNode2 = clusterState(0L, 0L, node2, VotingConfiguration.EMPTY_CONFIG, VotingConfiguration.EMPTY_CONFIG, 42L);
68-
initialStateNode3 = clusterState(0L, 0L, node3, VotingConfiguration.EMPTY_CONFIG, VotingConfiguration.EMPTY_CONFIG, 42L);
65+
ClusterState initialStateNode2 =
66+
clusterState(0L, 0L, node2, VotingConfiguration.EMPTY_CONFIG, VotingConfiguration.EMPTY_CONFIG, 42L);
67+
ClusterState initialStateNode3 =
68+
clusterState(0L, 0L, node3, VotingConfiguration.EMPTY_CONFIG, VotingConfiguration.EMPTY_CONFIG, 42L);
6969

7070
ps1 = new InMemoryPersistedState(0L, initialStateNode1);
7171

0 commit comments

Comments
 (0)