Commit 046ab74f authored by Matt Tucker's avatar Matt Tucker Committed by matt

Javadoc fixes.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3678 b35dd754-fafc-0310-a699-88a17e54d16e
parent 03393ec7
...@@ -179,8 +179,8 @@ public class EmailService { ...@@ -179,8 +179,8 @@ public class EmailService {
try { try {
String encoding = MimeUtility.mimeCharset("iso-8859-1"); String encoding = MimeUtility.mimeCharset("iso-8859-1");
MimeMessage message = createMimeMessage(); MimeMessage message = createMimeMessage();
Address to = null; Address to;
Address from = null; Address from;
if (toName != null) { if (toName != null) {
to = new InternetAddress(toEmail, toName, encoding); to = new InternetAddress(toEmail, toName, encoding);
...@@ -254,7 +254,7 @@ public class EmailService { ...@@ -254,7 +254,7 @@ public class EmailService {
/** /**
* Sends a collection of email messages. This method differs from * Sends a collection of email messages. This method differs from
* {@link #sendMessages(Collection<MimeMessage>)} in that messages are sent * {@link #sendMessages(Collection)} in that messages are sent
* before this method returns rather than queueing the messages to be sent later. * before this method returns rather than queueing the messages to be sent later.
* *
* @param messages * @param messages
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment