]> WPIA git - gigi.git/blobdiff - util-testing/org/cacert/gigi/email/DelegateMailProvider.java
upd: make email sender address fixed.
[gigi.git] / util-testing / org / cacert / gigi / email / DelegateMailProvider.java
index c0143ebe0a855e79109f099c544e1d3ee1aeba81..109aae8dc17f7d1bba931a9cb9d34d23d3d92dd1 100644 (file)
@@ -25,9 +25,9 @@ public abstract class DelegateMailProvider extends EmailProvider {
     }
 
     @Override
-    public void sendMail(String to, String subject, String message, String from, String replyto, String toname, String fromname, String errorsto, boolean extra) throws IOException {
+    public void sendMail(String to, String subject, String message, String replyto, String toname, String fromname, String errorsto, boolean extra) throws IOException {
         if (target != null) {
-            target.sendMail(to, subject, message, from, replyto, toname, fromname, errorsto, extra);
+            target.sendMail(to, subject, message, replyto, toname, fromname, errorsto, extra);
         }
     }