From: adam Date: Wed, 7 Jul 2004 08:57:23 +0000 (+0000) Subject: typo X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=d2c05737162f819c08548da0ce13a7a4844eeb0f;p=org.ibex.mail.git typo darcs-hash:20040707085723-5007d-e781690854cc95fc7e63865cd5bb9a28bf010b45.gz --- diff --git a/src/org/ibex/mail/protocol/SMTP.java b/src/org/ibex/mail/protocol/SMTP.java index f7a91e0..31f9e59 100644 --- a/src/org/ibex/mail/protocol/SMTP.java +++ b/src/org/ibex/mail/protocol/SMTP.java @@ -152,7 +152,7 @@ public class SMTP { Log.setThreadAnnotation("[outgoing smtp] "); Log.info(SMTP.Outgoing.class, "outgoing thread started; " + spool.count(Query.all()) + " messages to send"); while(true) { - for(Mailbox.Iterator it = spool.iterator(); it.next(); ) + for(Mailbox.Iterator it = spool.iterator(); it.next(); ) { try { if (attempt(it.cur())) it.delete(); } catch (Exception e) { Log.error(SMTP.Outgoing.class, e); } }