conflicts removed
This commit is contained in:
parent
460104c86f
commit
badcd11058
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue