Put back the doGet() method, even though it's empty.

This commit is contained in:
j2blake 2011-04-18 21:14:08 +00:00
parent 0cf1da00b8
commit 155ab92f51

View file

@ -97,6 +97,15 @@ public class VitroHttpServlet extends HttpServlet {
+ "If you think this is an error, "
+ "please contact us and we'll be happy to help.";
/**
* doGet does nothing.
*/
@Override
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
// nothing to do
}
/**
* doPost does the same thing as the doGet method
*/