remove debugging info

This commit is contained in:
Sebastian Sdorra
2010-09-16 22:02:23 +02:00
parent 2f170494cf
commit ff5e3e4023

View File

@@ -35,15 +35,8 @@ public abstract class AbstractResourceServlet extends HttpServlet
/** Field description */ /** Field description */
private static final long serialVersionUID = -7703282364120349053L; private static final long serialVersionUID = -7703282364120349053L;
public AbstractResourceServlet()
{
System.out.println("CONSTRUCT !!!");
}
//~--- methods -------------------------------------------------------------- //~--- methods --------------------------------------------------------------
/** /**
* Method description * Method description
* *
@@ -77,8 +70,6 @@ public abstract class AbstractResourceServlet extends HttpServlet
@Override @Override
public void init() throws ServletException public void init() throws ServletException
{ {
System.out.println("INIT !!!");
ByteArrayOutputStream output = new ByteArrayOutputStream(); ByteArrayOutputStream output = new ByteArrayOutputStream();
try try
@@ -161,8 +152,6 @@ public abstract class AbstractResourceServlet extends HttpServlet
HttpServletResponse response) HttpServletResponse response)
throws ServletException, IOException throws ServletException, IOException
{ {
System.out.println( "JA !!!" );
response.setCharacterEncoding(getCharacterEncoding()); response.setCharacterEncoding(getCharacterEncoding());
response.setContentType(getContentType()); response.setContentType(getContentType());
response.setContentLength(content.length); response.setContentLength(content.length);