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
commit d5a831c2d1effecc4c62dfac3295cb8a106d00f0 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 27 10:27:27 2025 -0400 Javadoc --- src/main/java/org/apache/commons/imaging/AbstractImageParser.java | 8 ++++---- src/main/java/org/apache/commons/imaging/Imaging.java | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/imaging/AbstractImageParser.java b/src/main/java/org/apache/commons/imaging/AbstractImageParser.java index 24d05f1d..1ef2885e 100644 --- a/src/main/java/org/apache/commons/imaging/AbstractImageParser.java +++ b/src/main/java/org/apache/commons/imaging/AbstractImageParser.java @@ -154,7 +154,7 @@ public abstract class AbstractImageParser<T extends ImagingParameters<T>> extend } /** - * Write the ImageInfo and format-specific information for the image content of the specified byte array to a string. + * Writes the ImageInfo and format-specific information for the image content of the specified byte array to a string. * * @param bytes A valid array of bytes. * @return A valid string. @@ -166,7 +166,7 @@ public abstract class AbstractImageParser<T extends ImagingParameters<T>> extend } /** - * Write the ImageInfo and format-specific information for the image content of the specified byte source to a string. + * Writes the ImageInfo and format-specific information for the image content of the specified byte source to a string. * * @param byteSource A valid byte source. * @return A valid string. @@ -185,7 +185,7 @@ public abstract class AbstractImageParser<T extends ImagingParameters<T>> extend } /** - * Write the ImageInfo and format-specific information for the image content of the specified file to a string. + * Writes the ImageInfo and format-specific information for the image content of the specified file to a string. * * @param file A valid file reference. * @return A valid string. @@ -205,7 +205,7 @@ public abstract class AbstractImageParser<T extends ImagingParameters<T>> extend } /** - * Write the ImageInfo and format-specific information for the image content of the specified byte source to a PrintWriter + * Writes the ImageInfo and format-specific information for the image content of the specified byte source to a PrintWriter * * @param pw print writer used for writing the ImageInfo * @param byteSource A valid byte source. diff --git a/src/main/java/org/apache/commons/imaging/Imaging.java b/src/main/java/org/apache/commons/imaging/Imaging.java index 1821a64d..01fe82ac 100644 --- a/src/main/java/org/apache/commons/imaging/Imaging.java +++ b/src/main/java/org/apache/commons/imaging/Imaging.java @@ -118,7 +118,7 @@ public final class Imaging { } /** - * Write the ImageInfo and format-specific information for the image content of the specified byte array to a string. + * Writes the ImageInfo and format-specific information for the image content of the specified byte array to a string. * * @param bytes A valid array of bytes. * @return A valid string. @@ -135,7 +135,7 @@ public final class Imaging { } /** - * Write the ImageInfo and format-specific information for the image content of the specified file to a string. + * Writes the ImageInfo and format-specific information for the image content of the specified file to a string. * * @param file A valid file reference. * @return A valid string.