This is an automated email from the ASF dual-hosted git repository.

garydgregory pushed a commit to branch 1.x
in repository https://gitbox.apache.org/repos/asf/commons-email.git


The following commit(s) were added to refs/heads/1.x by this push:
     new 78619326 Javadoc
78619326 is described below

commit 78619326221bd939acd2df7b429cdeec6ee5c234
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Aug 2 15:38:19 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/mail/EmailUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/mail/EmailUtils.java 
b/src/main/java/org/apache/commons/mail/EmailUtils.java
index ad24faf8..d4c381d7 100644
--- a/src/main/java/org/apache/commons/mail/EmailUtils.java
+++ b/src/main/java/org/apache/commons/mail/EmailUtils.java
@@ -101,7 +101,7 @@ final class EmailUtils {
      *
      * @param file The file to check.
      * @return The given file if it exists and is not a directory.
-     * @throws IOException if the given file does not exist or is a directory.
+     * @throws IOException Thrown if the given file does not exist or is a 
directory.
      */
     static File check(final File file) throws IOException {
         Objects.requireNonNull(file, "file");
@@ -119,7 +119,7 @@ final class EmailUtils {
      *
      * @param file The file to check.
      * @return The given file if it exists and is not a directory.
-     * @throws IOException if the given file does not exist or is a directory.
+     * @throws IOException Thrown if the given file does not exist or is a 
directory.
      */
     static Path check(final Path file) throws IOException {
         Objects.requireNonNull(file, "file");

Reply via email to