Removing 2 second sleep
This commit is contained in:
parent
58eb6740ec
commit
7c40c0e2be
|
@ -18,8 +18,6 @@
|
|||
|
||||
package org.eclipse.jetty.start;
|
||||
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import org.eclipse.jetty.start.Props.Prop;
|
||||
|
||||
public class BaseHomeWarning
|
||||
|
@ -35,17 +33,6 @@ public class BaseHomeWarning
|
|||
StartLog.warn("Use a proper {jetty.base} setup");
|
||||
StartLog.warn("See: http://www.eclipse.org/jetty/documentation/current/startup.html");
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
System.err.print("Your startup will proceed shortly ...");
|
||||
TimeUnit.SECONDS.sleep(2);
|
||||
System.err.println();
|
||||
}
|
||||
catch (InterruptedException e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue