Fix another Java-6ism

This commit is contained in:
Miron Cuperman (devrandom)
2011-10-27 17:51:34 +00:00
parent 65205b2655
commit 415f8e611c

View File

@@ -109,6 +109,6 @@ public class PrintPeers {
}
});
}
pool.awaitTermination(1, TimeUnit.DAYS);
pool.awaitTermination(3600 * 24, TimeUnit.SECONDS); // 1 Day
}
}