Here you can find the source of sleepABit(long millis)
public static void sleepABit(long millis)
//package com.java2s; public class Main { public static void sleepABit(long millis) { try {//from w w w.j a v a2 s . c om Thread.sleep(millis); } catch (InterruptedException e) { } } }