Removing 2 second sleep

This commit is contained in:
Joakim Erdfelt 2014-10-29 14:33:46 -07:00
parent 58eb6740ec
commit 7c40c0e2be
1 changed files with 0 additions and 13 deletions

View File

@ -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();
}
}
}
}