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

eu.cedarsoft.Sleep Maven / Gradle / Ivy

The newest version!
package eu.cedarsoft;

/**
 *
 */
public class Sleep {
  public static void now( long millis ) {
    try {
      Thread.sleep( millis );
    } catch ( InterruptedException e ) {
      throw new RuntimeException( e );
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy