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
The following commit(s) were added to refs/heads/master by this push: new 2a477dc Javadoc @link tags do not need to use a FQCN for classes in java.lang 2a477dc is described below commit 2a477dc3f46620dfbe3307840f216b316fc8eb1f Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Aug 29 07:36:03 2022 -0400 Javadoc @link tags do not need to use a FQCN for classes in java.lang --- src/main/java/org/apache/commons/mail/Email.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/mail/Email.java b/src/main/java/org/apache/commons/mail/Email.java index cb7438d..83aa178 100644 --- a/src/main/java/org/apache/commons/mail/Email.java +++ b/src/main/java/org/apache/commons/mail/Email.java @@ -762,7 +762,7 @@ public abstract class Email * Add a recipient TO to the email. The email * address will also be used as the personal name. * The name will be encoded by the charset of - * {@link #setCharset(java.lang.String) setCharset()}. + * {@link #setCharset(String) setCharset()}. * If it is not set, it will be encoded using * the Java platform's default charset (UTF-16) if it contains * non-ASCII characters; otherwise, it is used as is. @@ -782,7 +782,7 @@ public abstract class Email * Add a list of TO recipients to the email. The email * addresses will also be used as the personal names. * The names will be encoded by the charset of - * {@link #setCharset(java.lang.String) setCharset()}. + * {@link #setCharset(String) setCharset()}. * If it is not set, it will be encoded using * the Java platform's default charset (UTF-16) if it contains * non-ASCII characters; otherwise, it is used as is. @@ -812,7 +812,7 @@ public abstract class Email * Add a recipient TO to the email using the specified address and the * specified personal name. * The name will be encoded by the charset of - * {@link #setCharset(java.lang.String) setCharset()}. + * {@link #setCharset(String) setCharset()}. * If it is not set, it will be encoded using * the Java platform's default charset (UTF-16) if it contains * non-ASCII characters; otherwise, it is used as is. @@ -892,7 +892,7 @@ public abstract class Email * Add an array of CC recipients to the email. The email * addresses will also be used as the personal name. * The names will be encoded by the charset of - * {@link #setCharset(java.lang.String) setCharset()}. + * {@link #setCharset(String) setCharset()}. * If it is not set, it will be encoded using * the Java platform's default charset (UTF-16) if it contains * non-ASCII characters; otherwise, it is used as is. @@ -1001,7 +1001,7 @@ public abstract class Email * Add an array of blind BCC recipients to the email. The email * addresses will also be used as the personal name. * The names will be encoded by the charset of - * {@link #setCharset(java.lang.String) setCharset()}. + * {@link #setCharset(String) setCharset()}. * If it is not set, it will be encoded using * the Java platform's default charset (UTF-16) if it contains * non-ASCII characters; otherwise, it is used as is.