private void somename(HttpServletRequest request, pageBean UTIL) throws Exception
{
checkEmpHxAction(request, UTIL);
long empRecNum = UTIL.getNumValue("EMPLOYEE", "REC_NUM");
ListBean list = UTIL.getListBean(request, "EMPTRNHX", true);
}
My boss says that there is an improvement needed in the coding style.
- There are some issues with this code.
- Should we not use ArrayList.
- What can i make the code more readable.
- Is there any memory leakage.
Please help!