whitespace fixups
[jSite2.git] / src / net / pterodactylus / util / io / LimitedInputStream.java
index 5224bde..68e5d16 100644 (file)
@@ -11,7 +11,7 @@ import java.io.InputStream;
 /**
  * A wrapper around an {@link InputStream} that only supplies a limit number of
  * bytes from the underlying input stream.
- * 
+ *
  * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
  */
 public class LimitedInputStream extends FilterInputStream {
@@ -22,7 +22,7 @@ public class LimitedInputStream extends FilterInputStream {
        /**
         * Creates a new LimitedInputStream that supplies at most
         * <code>length</code> bytes from the given input stream.
-        * 
+        *
         * @param inputStream
         *            The input stream
         * @param length
@@ -87,7 +87,7 @@ public class LimitedInputStream extends FilterInputStream {
        /**
         * {@inheritDoc} This method does nothing, as {@link #mark(int)} and
         * {@link #reset()} are not supported.
-        * 
+        *
         * @see java.io.FilterInputStream#mark(int)
         */
        @Override
@@ -97,7 +97,7 @@ public class LimitedInputStream extends FilterInputStream {
 
        /**
         * {@inheritDoc}
-        * 
+        *
         * @see java.io.FilterInputStream#markSupported()
         * @return <code>false</code>
         */
@@ -109,7 +109,7 @@ public class LimitedInputStream extends FilterInputStream {
        /**
         * {@inheritDoc} This method does nothing, as {@link #mark(int)} and
         * {@link #reset()} are not supported.
-        * 
+        *
         * @see java.io.FilterInputStream#reset()
         */
        @Override
@@ -120,7 +120,7 @@ public class LimitedInputStream extends FilterInputStream {
        /**
         * Consumes the input stream, i.e. read all bytes until the limit is
         * reached.
-        * 
+        *
         * @throws IOException
         *             if an I/O error occurs
         */