All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.sixpack.utils.Timer Maven / Gradle / Ivy

The newest version!
package dev.sixpack.utils;

import java.util.concurrent.TimeUnit;

public abstract class Timer {
    public static void sleep(int seconds) {
        try {
            TimeUnit.SECONDS.sleep(seconds);
        } catch (InterruptedException ignored) {
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy