summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cms/notification
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-04-05 14:49:11 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-04-09 10:03:25 -0500
commit7c7b9d023cd466c1771068badc020dab36beb553 (patch)
tree178877eb83e25336be7577953945fbdb0b9e1a15 /base/common/src/com/netscape/cms/notification
parentda1e6e2f49f66fd46c8039ff1aa4386309fba8f4 (diff)
downloadpki-7c7b9d023cd466c1771068badc020dab36beb553.tar.gz
pki-7c7b9d023cd466c1771068badc020dab36beb553.tar.xz
pki-7c7b9d023cd466c1771068badc020dab36beb553.zip
Removed whitespaces from Java code.
Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134
Diffstat (limited to 'base/common/src/com/netscape/cms/notification')
-rw-r--r--base/common/src/com/netscape/cms/notification/MailNotification.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/base/common/src/com/netscape/cms/notification/MailNotification.java b/base/common/src/com/netscape/cms/notification/MailNotification.java
index ef09d8f71..cd4ee431c 100644
--- a/base/common/src/com/netscape/cms/notification/MailNotification.java
+++ b/base/common/src/com/netscape/cms/notification/MailNotification.java
@@ -34,7 +34,7 @@ import com.netscape.certsrv.notification.IMailNotification;
* This class uses <b>smtp.host</b> in the configuration for smtp
* host. The port default (25) is used. If no smtp specified, local
* host is used
- *
+ *
* @version $Revision$, $Date$
*/
public class MailNotification implements IMailNotification {
@@ -134,7 +134,7 @@ public class MailNotification implements IMailNotification {
/**
* sets the "From" field
- *
+ *
* @param from email address of the sender
*/
public void setFrom(String from) {
@@ -143,7 +143,7 @@ public class MailNotification implements IMailNotification {
/**
* sets the "Subject" field
- *
+ *
* @param subject subject of the email
*/
public void setSubject(String subject) {
@@ -152,7 +152,7 @@ public class MailNotification implements IMailNotification {
/**
* sets the "Content-Type" field
- *
+ *
* @param contentType content type of the email
*/
public void setContentType(String contentType) {
@@ -161,7 +161,7 @@ public class MailNotification implements IMailNotification {
/**
* sets the content of the email
- *
+ *
* @param content the message content
*/
public void setContent(String content) {
@@ -170,7 +170,7 @@ public class MailNotification implements IMailNotification {
/**
* sets the recipients' email addresses
- *
+ *
* @param addresses a list of email addresses of the recipients
*/
public void setTo(Vector<String> addresses) {
@@ -180,7 +180,7 @@ public class MailNotification implements IMailNotification {
/**
* sets the recipient's email address
- *
+ *
* @param to address of the recipient email address
*/
public void setTo(String to) {