Commit f0f5019c authored by pbhosale's avatar pbhosale

Updated on [13-12-2019][To avoid operator not allowed error]

AdmCommon.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@213508 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 075762f2
......@@ -1824,7 +1824,10 @@ public class AdmCommon
public HashMap fetchEmpMstInfo(String empCode , Date asOfDate , String loginSite , String userId, int userLevel, String loginEmpCode , String winName ,Connection conn) throws ITMException
{
E12GenericUtility genericUtility = new E12GenericUtility();
HashMap fetchEmpMap = new HashMap<>();
//Modified by Poonam B[13-12-2019][To avoid operator not allowed error][START]
//HashMap fetchEmpMap = new HashMap<>();
HashMap fetchEmpMap = new HashMap();
//Modified by Poonam B[13-12-2019][To avoid operator not allowed error][END]
//UtilMethods utilMethods = new UtilMethods();
AdmCommon admCommon = new AdmCommon();
//java.util.Date relieveDate = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment