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-email.git
commit 52682c8e86efc100c89e86ab2ccf2ecbd139f0aa Author: Gary Gregory <[email protected]> AuthorDate: Sun Jan 4 12:43:12 2026 -0500 Use a code comment, not Javadoc inside a method --- .../org/apache/commons/mail2/jakarta/SendWithAttachmentsTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-email2-jakarta/src/test/java/org/apache/commons/mail2/jakarta/SendWithAttachmentsTest.java b/commons-email2-jakarta/src/test/java/org/apache/commons/mail2/jakarta/SendWithAttachmentsTest.java index c0f11654..c40282f7 100644 --- a/commons-email2-jakarta/src/test/java/org/apache/commons/mail2/jakarta/SendWithAttachmentsTest.java +++ b/commons-email2-jakarta/src/test/java/org/apache/commons/mail2/jakarta/SendWithAttachmentsTest.java @@ -103,8 +103,8 @@ class SendWithAttachmentsTest extends AbstractEmailTest { email.setFrom(strTestMailFrom); email.addTo(strTestMailTo); - /** File to be used to test file attachments (Must be valid) */ - /** Use umlaut characters to test if the file name is properly encoded */ + // File to be used to test file attachments (Must be valid). + // Use umlaut characters to test if the file name is properly encoded. // use short name to avoid folding. Otherwise need to unfold when checking result. attachment.setName("a>ä, o>ö, u>ü, au>äu"); attachment.setDescription("Test Attachment Desc");
