try {
String [] clients = IP.replace(" ","").split(",");
for(String clientIp : clients) {
if (Pinger.host(clientIp)) {
LOGGER.log(Level.INFO, "Sending Growl to " + clientIp + "...");
new Growler().send(clientIp, password, message);
} else {
LOGGER.log(Level.INFO, "Cannot send Growl to " + clientIp + ", host is down.");
}
}
} catch (Exception e) {