whitespace fixups
[jSite2.git] / src / net / pterodactylus / util / io / StreamCopier.java
index f413744..8f1592d 100644 (file)
@@ -27,7 +27,7 @@ import java.io.OutputStream;
 /**
  * Helper class that copies bytes from an {@link InputStream} to an
  * {@link OutputStream}.
- * 
+ *
  * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
  */
 public class StreamCopier {
@@ -40,7 +40,7 @@ public class StreamCopier {
 
        /**
         * Sets the buffer size for following transfers.
-        * 
+        *
         * @param bufferSize
         *            The new buffer size
         */
@@ -54,7 +54,7 @@ public class StreamCopier {
         * as much bytes as possible will be copied (i.e. until
         * {@link InputStream#read()} returns <code>-1</code> to signal the end of
         * the stream).
-        * 
+        *
         * @param source
         *            The input stream to read from
         * @param destination
@@ -85,7 +85,7 @@ public class StreamCopier {
         * Copies as much bytes as possible (i.e. until {@link InputStream#read()}
         * returns <code>-1</code>) from the source input stream to the
         * destination output stream.
-        * 
+        *
         * @param source
         *            The input stream to read from
         * @param destination
@@ -100,7 +100,7 @@ public class StreamCopier {
        /**
         * Finds the length of the input stream by reading until
         * {@link InputStream#read(byte[])} returns <code>-1</code>.
-        * 
+        *
         * @param source
         *            The input stream to measure
         * @return The length of the input stream in bytes