Thread.currentThread().sleep(4000);should be written asThread.sleep(4000);since sleep is a static method
Thread.currentThread().sleep(4000);
ReplyDeleteshould be written as
Thread.sleep(4000);
since sleep is a static method