Conventien method to sleep.

This commit is contained in:
Guillaume Beraudo 2011-08-05 16:15:24 +02:00
parent 6eb200df4a
commit 83390c8351

View file

@ -89,7 +89,7 @@ public final class Hacks {
sleep(200);
}
private static final void sleep(int time) {
public static final void sleep(int time) {
try {
Thread.sleep(time);
} catch(InterruptedException ie){}