conflicts removed

This commit is contained in:
Shubham Aggarwal 2016-11-29 14:33:23 +05:30
parent 460104c86f
commit badcd11058
1 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,13 @@ public class FormServlet extends HttpServlet {
}
}
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// do something else here
}
private Double calculateBMI(Double weight, Double height) {
return weight / (height * height);