]> WPIA git - gigi.git/blobdiff - util-testing/org/cacert/gigi/email/TestEmailProvider.java
upd: rename sendmail to sendMail
[gigi.git] / util-testing / org / cacert / gigi / email / TestEmailProvider.java
index bee64f4bc3f1b6a4458eb73babfc8257cf558305..740120271a0f3e57edc00265bb2298c3eac66ae4 100644 (file)
@@ -45,10 +45,10 @@ public class TestEmailProvider extends EmailProvider {
     }
 
     @Override
-    public synchronized void sendmail(String to, String subject, String message, String from, String replyto, String toname, String fromname, String errorsto, boolean extra) throws IOException {
+    public synchronized void sendMail(String to, String subject, String message, String from, String replyto, String toname, String fromname, String errorsto, boolean extra) throws IOException {
         while (true) {
             if ( !assureLocalConnection() && target != null) {
-                target.sendmail(to, subject, message, from, replyto, toname, fromname, errorsto, extra);
+                target.sendMail(to, subject, message, from, replyto, toname, fromname, errorsto, extra);
                 return;
             }
             try {