updated to new location of main Server class

This commit is contained in:
hns 2001-08-27 16:30:09 +00:00
parent 027568007e
commit 9d287e9ddd

View file

@ -3,7 +3,7 @@
package helma.framework.extensions; package helma.framework.extensions;
import helma.objectmodel.*; import helma.main.Server;
import helma.util.*; import helma.util.*;
import FESI.Interpreter.*; import FESI.Interpreter.*;
@ -243,7 +243,7 @@ public class MailExtension extends Extension {
try { try {
mail.send (); mail.send ();
} catch (Exception x) { } catch (Exception x) {
IServer.getLogger().log ("Error sending mail: "+x); Server.getLogger().log ("Error sending mail: "+x);
mail.setStatus (ESMail.SEND); mail.setStatus (ESMail.SEND);
return ESBoolean.makeBoolean(false); return ESBoolean.makeBoolean(false);
} }