wf.utils.java.thread.ThreadUtils Maven / Gradle / Ivy
package wf.utils.java.thread;
public class ThreadUtils {
public static void sleep(long millis) {
try { Thread.sleep(millis); }
catch (InterruptedException e) { throw new RuntimeException(e); }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy