Author: dion
Date: Wed Jun 22 08:06:18 2005
New Revision: 192676

URL: http://svn.apache.org/viewcvs?rev=192676&view=rev
Log:
Checkstyle report

Modified:
    
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java

Modified: 
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java?rev=192676&r1=192675&r2=192676&view=diff
==============================================================================
--- 
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java 
(original)
+++ 
jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java 
Wed Jun 22 08:06:18 2005
@@ -756,34 +756,34 @@
             {
                 throw new EmailException("Sender address required");
             }
-    
+
             if (this.toList.size() + this.ccList.size() + this.bccList.size() 
== 0)
             {
                 throw new EmailException(
                             "At least one receiver address required");
             }
-    
+
             if (this.toList.size() > 0)
             {
                 this.message.setRecipients(
                     Message.RecipientType.TO,
                     this.toInternetAddressArray(this.toList));
             }
-    
+
             if (this.ccList.size() > 0)
             {
                 this.message.setRecipients(
                     Message.RecipientType.CC,
                     this.toInternetAddressArray(this.ccList));
             }
-    
+
             if (this.bccList.size() > 0)
             {
                 this.message.setRecipients(
                     Message.RecipientType.BCC,
                     this.toInternetAddressArray(this.bccList));
             }
-    
+
             if (this.replyList.size() > 0)
             {
                 this.message.setReplyTo(



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to