Fix an Eclipse warning
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 17 Nov 2009 20:49:48 +0000 (20:49 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 17 Nov 2009 20:49:48 +0000 (20:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@881501 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/util/IOTools.java

index 7047858..ae4c974 100644 (file)
@@ -31,11 +31,11 @@ import java.io.Writer;
 public class IOTools {
     protected final static int DEFAULT_BUFFER_SIZE=4*1024; //4k
 
-    //Ensure non-instantiability
     private IOTools() {
+      //Ensure non-instantiability
     }
 
-     /**
+    /**
      * Read input from reader and write it to writer until there is no more
      * input from reader.
      *