This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-imaging.git
The following commit(s) were added to refs/heads/master by this push: new a1072f6 Javadoc: Replace <code></code> HTML tags with Javadoc {@code} notation. a1072f6 is described below commit a1072f61f68dcd4f58d171ce576314be7d57101d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Dec 10 10:44:58 2019 -0500 Javadoc: Replace <code></code> HTML tags with Javadoc {@code} notation. --- .../org/apache/commons/imaging/formats/jpeg/JpegImageMetadata.java | 2 +- src/main/java/org/apache/commons/imaging/formats/tiff/TiffField.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/imaging/formats/jpeg/JpegImageMetadata.java b/src/main/java/org/apache/commons/imaging/formats/jpeg/JpegImageMetadata.java index bf6ec7a..e1bb2dc 100644 --- a/src/main/java/org/apache/commons/imaging/formats/jpeg/JpegImageMetadata.java +++ b/src/main/java/org/apache/commons/imaging/formats/jpeg/JpegImageMetadata.java @@ -120,7 +120,7 @@ public class JpegImageMetadata implements ImageMetadata { /** * Get the thumbnail image if available. * - * @return the thumbnail image. May be <code>null</code> if no image could + * @return the thumbnail image. May be {@code null} if no image could * be found. * @throws ImageReadException if it fails to read the image * @throws IOException if it fails to get the thumbnail or to read the image data diff --git a/src/main/java/org/apache/commons/imaging/formats/tiff/TiffField.java b/src/main/java/org/apache/commons/imaging/formats/tiff/TiffField.java index 0e61575..c7ba5a7 100644 --- a/src/main/java/org/apache/commons/imaging/formats/tiff/TiffField.java +++ b/src/main/java/org/apache/commons/imaging/formats/tiff/TiffField.java @@ -77,7 +77,7 @@ public class TiffField { /** * Returns the field's tag, derived from bytes 0-1. - * @return the tag, as an <code>int</code> in which only the lowest 2 bytes are set + * @return the tag, as an {@code int} in which only the lowest 2 bytes are set */ public int getTag() { return tag; @@ -101,7 +101,7 @@ public class TiffField { /** * Returns the TIFF field's offset/value field, derived from bytes 8-11. - * @return the field's offset in a <code>long</code> of 4 packed bytes, + * @return the field's offset in a {@code long} of 4 packed bytes, * or its inlined value <= 4 bytes long encoded in the field's byte order. */ public int getOffset() {