Author: dion
Date: Thu Feb 22 19:54:37 2007
New Revision: 510797

URL: http://svn.apache.org/viewvc?view=rev&rev=510797
Log:
checkstyle fixes

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/viewvc/jakarta/commons/proper/email/trunk/src/java/org/apache/commons/mail/Email.java?view=diff&rev=510797&r1=510796&r2=510797
==============================================================================
--- 
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 
Thu Feb 22 19:54:37 2007
@@ -217,13 +217,13 @@
     /** the password to log into the pop3 server */
     protected String popPassword;
 
-    /** The Session to mail with */
-    private Session session;
-
     /** does server require TLS encryption for authentication */
-    protected boolean tls = false;
+    protected boolean tls;
     /** does the current transport use SSL encryption? */
-    protected boolean ssl = false;
+    protected boolean ssl;
+
+    /** The Session to mail with */
+    private Session session;
 
     /**
      * Setting to true will enable the display of debug information.
@@ -348,7 +348,7 @@
                     contentTypeBuf.append(this.charset);
                     this.contentType = contentTypeBuf.toString();
                 }
-            }            
+            }
         }
     }
 



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

Reply via email to