This is an automated email from the ASF dual-hosted git repository. kinow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-imaging.git
commit a25c84bde8cde6e26aff5ffe66114ba3a05134ac Author: Arturo Bernal <[email protected]> AuthorDate: Wed Apr 21 12:32:48 2021 +0200 [IMAGING-289] Fix javadoc --- .../apache/commons/imaging/formats/jpeg/decoder/JpegInputStream.java | 4 ++-- .../java/org/apache/commons/imaging/formats/png/chunks/PngChunk.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/imaging/formats/jpeg/decoder/JpegInputStream.java b/src/main/java/org/apache/commons/imaging/formats/jpeg/decoder/JpegInputStream.java index b95bef0..a6fa6fc 100644 --- a/src/main/java/org/apache/commons/imaging/formats/jpeg/decoder/JpegInputStream.java +++ b/src/main/java/org/apache/commons/imaging/formats/jpeg/decoder/JpegInputStream.java @@ -35,7 +35,7 @@ class JpegInputStream { /** * Returns {@code true} as long there are unread fields available, else {@code false} - * @return + * @return {@code true} as long there are unread fields available, else {@code false} */ public boolean hasNext() { return nextPos < this.interval.length; @@ -71,7 +71,7 @@ class JpegInputStream { /** * Returns the value from current field (as {@code InputStream.read()} would do) * and set the position of the pointer to the next field to read. - * @return + * @return the value from current field (as {@code InputStream.read()} would do). * @throws IllegalStateException if the stream hasn't any other value. */ int read() { diff --git a/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunk.java b/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunk.java index 764f0dc..f5ef794 100644 --- a/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunk.java +++ b/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunk.java @@ -24,7 +24,7 @@ import org.apache.commons.imaging.common.BinaryFileParser; * A PNG image is composed of several chunks. This is the base class for the chunks, * used by the parser. * - * @see https://en.wikipedia.org/wiki/Portable_Network_Graphics#%22Chunks%22_within_the_file + * @see <a href="https://en.wikipedia.org/wiki/Portable_Network_Graphics#%22Chunks%22_within_the_file>Portable_Network_Graphics</a> */ public class PngChunk extends BinaryFileParser { public final int length;
