X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Futil%2Fio%2FLimitedInputStream.java;h=68e5d16234b72ffd3060a1de34195981945dd040;hb=c63257e8cc0ba1a5aca9364b22171abe7279d479;hp=284d53dd25233bd8a9ea1dbbb2ec5fcc0065f2a5;hpb=c42f215d227f1faf47595356e8d311182286707a;p=jSite2.git diff --git a/src/net/pterodactylus/util/io/LimitedInputStream.java b/src/net/pterodactylus/util/io/LimitedInputStream.java index 284d53d..68e5d16 100644 --- a/src/net/pterodactylus/util/io/LimitedInputStream.java +++ b/src/net/pterodactylus/util/io/LimitedInputStream.java @@ -1,6 +1,7 @@ /** * © 2008 INA Service GmbH */ + package net.pterodactylus.util.io; import java.io.FilterInputStream; @@ -10,9 +11,8 @@ import java.io.InputStream; /** * A wrapper around an {@link InputStream} that only supplies a limit number of * bytes from the underlying input stream. - * + * * @author David Roden - * @version $Id$ */ public class LimitedInputStream extends FilterInputStream { @@ -22,7 +22,7 @@ public class LimitedInputStream extends FilterInputStream { /** * Creates a new LimitedInputStream that supplies at most * length bytes from the given input stream. - * + * * @param inputStream * The input stream * @param length @@ -76,7 +76,7 @@ public class LimitedInputStream extends FilterInputStream { */ @Override public synchronized long skip(long n) throws IOException { - if ((n < 0) || (remaining == 0)) { + if ((n < 0) || (remaining == 0)) { return 0; } long skipped = super.skip(Math.min(n, remaining)); @@ -85,11 +85,9 @@ public class LimitedInputStream extends FilterInputStream { } /** - * {@inheritDoc} - * - * This method does nothing, as {@link #mark(int)} and {@link #reset()} are - * not supported. - * + * {@inheritDoc} This method does nothing, as {@link #mark(int)} and + * {@link #reset()} are not supported. + * * @see java.io.FilterInputStream#mark(int) */ @Override @@ -99,7 +97,7 @@ public class LimitedInputStream extends FilterInputStream { /** * {@inheritDoc} - * + * * @see java.io.FilterInputStream#markSupported() * @return false */ @@ -109,11 +107,9 @@ public class LimitedInputStream extends FilterInputStream { } /** - * {@inheritDoc} - * - * This method does nothing, as {@link #mark(int)} and {@link #reset()} are - * not supported. - * + * {@inheritDoc} This method does nothing, as {@link #mark(int)} and + * {@link #reset()} are not supported. + * * @see java.io.FilterInputStream#reset() */ @Override @@ -124,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 */