overwrote init() in order to suppress log output

This commit is contained in:
hns 2001-08-08 10:05:23 +00:00
parent b8082fa589
commit 7bfe7af100
2 changed files with 10 additions and 0 deletions

View file

@ -60,6 +60,11 @@ public class AcmeFileServlet extends FileServlet
this.root = root; this.root = root;
} }
public void init (ServletConfig config) {
// do nothing
}
/// Services a single request from the client. /// Services a single request from the client.
// @param req the servlet request // @param req the servlet request
// @param req the servlet response // @param req the servlet response
@ -206,3 +211,4 @@ public class AcmeFileServlet extends FileServlet
} }

View file

@ -34,6 +34,9 @@ public class AcmeServletClient extends HttpServlet {
this.uploadLimit = 1024; // generous 1mb upload limit this.uploadLimit = 1024; // generous 1mb upload limit
} }
public void init (ServletConfig config) {
// do nothing
}
public void service (HttpServletRequest request, HttpServletResponse response) public void service (HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException { throws ServletException, IOException {
@ -253,3 +256,4 @@ public class AcmeServletClient extends HttpServlet {