Skip to content

Commit

Permalink
Fix NPE in (disabled?) test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Borges committed Oct 10, 2012
1 parent 9ded2e6 commit a1c77cc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -160,7 +160,7 @@ protected void createLiveConfig(int liveNode, int ... otherLiveNodes)
config0.setSecurityEnabled(false);
config0.setSharedStore(true);
config0.setClustered(true);
List<String> pairs = null;
List<String> pairs = new ArrayList<String>();
for (int node : otherLiveNodes)
{
TransportConfiguration otherLiveConnector = createTransportConfiguration(isNetty(), false, generateParams(node, isNetty()));
Expand Down

0 comments on commit a1c77cc

Please sign in to comment.