Commit a03470aa authored by ymohite's avatar ymohite

To Avoid an Ambiguity

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@207567 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 722e0185
......@@ -753,7 +753,8 @@ public class BSRTransferReport extends ValidatorEJB implements BSRTransferReport
try
{
System.out.println(" calling sendMail method()");
email.sendMail(commInfo.toString(), "ITM", null);
String nullValue = null;
email.sendMail(commInfo.toString(), "ITM", nullValue);
System.out.println(" ********Email send succesfully ***********");
} catch (Exception e)
{
......
......@@ -1226,7 +1226,8 @@ public class HalolMFGRelease extends ValidatorEJB implements HalolMFGReleaseRemo
try
{
System.out.println(" calling sendMail method() for forHalolMFGRelease.getPDFByScheduler");
email.sendMail(commInfo.toString(), "ITM", null);
String nullValue = null;
email.sendMail(commInfo.toString(), "ITM", nullValue);
System.out.println(" ********Email send succesfully for HalolMFGRelease.getPDFByScheduler ***********");
} catch (Exception e)
{
......
......@@ -1052,7 +1052,8 @@ public class PendingQCPurchaseOrder extends ValidatorEJB implements PendingQCPur
try
{
System.out.println(" calling sendMail method() for PendingQCPurchaseOrder.getPDFByScheduler");
email.sendMail(commInfo.toString(), "ITM", null);
String nullValue = null;
email.sendMail(commInfo.toString(), "ITM", nullValue);
System.out.println(" ********Email send succesfully for getPendingQCOrderPurchase.getPDFByScheduler ***********");
} catch (Exception e)
{
......
......@@ -1057,7 +1057,8 @@ public class PendingQCWorkOrder extends ValidatorEJB implements PendingQCWorkOrd
try
{
System.out.println(" calling sendMail method() for PendingQCWorkOrder.getPDFByScheduler");
email.sendMail(commInfo.toString(), "ITM", null);
String nullValue = null;
email.sendMail(commInfo.toString(), "ITM", nullValue);
System.out.println(" ********Email send succesfully for PendingQCWorkOrder.getPDFByScheduler ***********");
} catch (Exception e)
{
......
......@@ -815,7 +815,8 @@ public class ProductionVsBudgetReport extends ValidatorEJB implements Production
try
{
System.out.println(" calling sendMail method()");
email.sendMail(commInfo.toString(), "ITM", null);
String nullValue = null;
email.sendMail(commInfo.toString(), "ITM", nullValue);
System.out.println(" ********Email send succesfully ***********");
} catch (Exception e)
{
......
......@@ -1149,7 +1149,8 @@ public class WIPStatus extends ValidatorEJB implements WIPStatusLocal, WIPStatus
try
{
System.out.println(" calling sendMail method() for WIPStatus.getPDFByScheduler");
email.sendMail(commInfo.toString(), "ITM", null);
String nullValue = null;
email.sendMail(commInfo.toString(), "ITM", nullValue);
System.out.println(" ********Email send succesfully for WIPStatus.getPDFByScheduler ***********");
} catch (Exception e)
{
......
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