Skip to content

Commit

Permalink
0003227: When pushing to a large number of nodes on limited number of
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpmind-josh committed Aug 21, 2017
1 parent 2d49261 commit 9a7be8e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -201,7 +201,7 @@ public List<NodeCommunication> list(CommunicationType communicationType) {
}

List<NodeCommunication> nodesToCommunicateWithList = filterForChannelThreading(nodesToCommunicateWith);
Map<String, NodeCommunication> nodesToCommunicateWithListMap = new HashMap<>(nodesToCommunicateWithList.size());
Map<String, NodeCommunication> nodesToCommunicateWithListMap = new HashMap<String, NodeCommunication>(nodesToCommunicateWithList.size());
for (NodeCommunication nodeToCommunicateWith : nodesToCommunicateWithList) {
NodeCommunication comm = communicationRowsMap.get(nodeToCommunicateWith.getIdentifier());

Expand Down

0 comments on commit 9a7be8e

Please sign in to comment.