Commit af8fcd4b authored by steurwadkar's avatar steurwadkar

F17ABAS001 source code commit


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@106683 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 59b55829
......@@ -526,6 +526,22 @@ public class GSTCommonUtil extends ValidatorEJB
System.out.println("GSTCommonUtil.getGSTDateFormat()["+e.getMessage()+"]");
e.printStackTrace();
}
finally
{
try
{
if(conn != null && !conn.isClosed())
{
conn.close();
conn = null;
}
}
catch(SQLException se)
{
System.out.println("GSTCommonUtil.getGSTDateFormat()["+se.getMessage()+"]");
se.printStackTrace();
}
}
return dateFormat;
}
......
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