Skip to content
Snippets Groups Projects
Commit 51f6da8e authored by brinn's avatar brinn
Browse files

change: apply naming convention for parameter that may be null

SVN: 11268
parent 6c9d801f
No related branches found
No related tags found
No related merge requests found
......@@ -28,10 +28,10 @@ public interface IMailClient
/**
* Sends a mail with given <var>subject</var> and <var>content</var> to given <var>recipients</var>.
* @param replyTo reply-to part of the email header
* @param replyToOrNull reply-to part of the email header. Can be <code>null</code>.
* @param recipients list of recipients (of type <code>Message.RecipientType.TO</code>)
*/
public void sendMessage(String subject, String content, String replyTo, String... recipients)
public void sendMessage(String subject, String content, String replyToOrNull, String... recipients)
throws EnvironmentFailureException;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment