Removing embarrassing code

This commit is contained in:
Joakim Erdfelt 2012-10-15 06:53:08 -07:00
parent f5d3fec4f8
commit a4050aa40f
1 changed files with 0 additions and 13 deletions

View File

@ -56,18 +56,5 @@ public class HelloWorld extends HttpServlet
out.println("<h1>Hello World</h1>");
out.println("</html>");
out.flush();
try
{
Thread.sleep(200);
}
catch (InterruptedException e)
{
getServletContext().log("exception",e);
}
}
}