Commit 01c8263b authored by manohar's avatar manohar

deprecated methods avoided


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104115 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 569f9869
...@@ -1129,7 +1129,10 @@ public class DespatchManualIC extends ValidatorEJB implements DespatchManualICLo ...@@ -1129,7 +1129,10 @@ public class DespatchManualIC extends ValidatorEJB implements DespatchManualICLo
cal.setTimeInMillis(timestamp); cal.setTimeInMillis(timestamp);
System.out.println("@@@@@@@ ld_desp_date["+ld_desp_date+"]"); System.out.println("@@@@@@@ ld_desp_date["+ld_desp_date+"]");
li_mth = ld_desp_date.getMonth(); // 02/dec-16 manoharan avoid deprecated
//li_mth = ld_desp_date.getMonth();
li_mth = cal.get(Calendar.MONTH);
System.out.println("@@@@@@@ li_mth["+li_mth+"]"); System.out.println("@@@@@@@ li_mth["+li_mth+"]");
String year = ""+cal.get(Calendar.YEAR); String year = ""+cal.get(Calendar.YEAR);
......
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