// Add all nodes at once to avoid copying entire array multiple times.
ArrayList<Node> list = new ArrayList<Node>();
for (int i = 0; i < seedArray.length; i++) {
Host seed = seedArray[i];
try {
NodeValidator seedNodeValidator = new NodeValidator(this, seed);
// Seed host may have multiple aliases in the case of round-robin dns configurations.