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

prompto.aws.Utils Maven / Gradle / Ivy

There is a newer version: 0.1.57
Show newest version
package prompto.aws;

public abstract class Utils {

	public static void unsafeSleep(long millis) {
		try {
			Thread.sleep(1000);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy