You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by he...@apache.org on 2005/08/31 10:45:11 UTC

svn commit: r264975 - /jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java

Author: henning
Date: Wed Aug 31 01:45:08 2005
New Revision: 264975

URL: http://svn.apache.org/viewcvs?rev=264975&view=rev
Log:
remove tab chars


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

Modified: jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java?rev=264975&r1=264974&r2=264975&view=diff
==============================================================================
--- jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java (original)
+++ jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/MultiPartEmail.java Wed Aug 31 01:45:08 2005
@@ -103,7 +103,7 @@
     public Email addPart(String partContent, String partContentType)
         throws EmailException
     {
-    	    BodyPart bodyPart = createBodyPart();
+            BodyPart bodyPart = createBodyPart();
         try
         {
             bodyPart.setContent(partContent, partContentType);
@@ -149,7 +149,7 @@
      */
     public Email addPart(MimeMultipart multipart, int index) throws EmailException
     {
-    	    BodyPart bodyPart = createBodyPart();
+            BodyPart bodyPart = createBodyPart();
         try
         {
             bodyPart.setContent(multipart);
@@ -233,7 +233,7 @@
                 // the content for the main body part was actually set.  If not,
                 // an IOException will be thrown during super.send().
 
-            	   BodyPart body = this.getPrimaryBodyPart();
+                   BodyPart body = this.getPrimaryBodyPart();
                 try
                 {
                     body.getContent();



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org