14 lines
283 B
Java
14 lines
283 B
Java
package info.frostfs.sdk.utils;
|
|
|
|
public class WaitUtil {
|
|
private WaitUtil() {
|
|
}
|
|
|
|
public static void sleep(long ms) {
|
|
try {
|
|
Thread.sleep(ms);
|
|
} catch (InterruptedException ex) {
|
|
Thread.currentThread().interrupt();
|
|
}
|
|
}
|
|
}
|