Conventien method to sleep.

This commit is contained in:
Guillaume Beraudo 2011-08-05 16:15:24 +02:00
parent 93fb939245
commit 8432509fae

View file

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