You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/10/09 23:05:03 UTC

svn commit: r1396319 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java

Author: tn
Date: Tue Oct  9 21:05:03 2012
New Revision: 1396319

URL: http://svn.apache.org/viewvc?rev=1396319&view=rev
Log:
Remove trailing spaces.

Modified:
    commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java

Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java?rev=1396319&r1=1396318&r2=1396319&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java (original)
+++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java Tue Oct  9 21:05:03 2012
@@ -111,7 +111,7 @@ public class QuotedPrintableCodec implem
      * @param charsetName
      *            the default string charset to use.
      * @throws UnsupportedCharsetException
-     *             If no support for the named charset is available 
+     *             If no support for the named charset is available
      *             in this instance of the Java virtual machine
      * @throws IllegalArgumentException
      *             If the given charsetName is null
@@ -120,7 +120,7 @@ public class QuotedPrintableCodec implem
      *
      * @since 1.7 throws UnsupportedCharsetException if the named charset is unavailable
      */
-    public QuotedPrintableCodec(String charsetName) 
+    public QuotedPrintableCodec(String charsetName)
             throws IllegalCharsetNameException, IllegalArgumentException, UnsupportedCharsetException {
         this(Charset.forName(charsetName));
     }