You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2009/02/27 22:14:57 UTC

svn commit: r748702 - /lenya/branches/BRANCH_2_0_X/src/modules/notification/java/src/org/apache/lenya/notification/Message.java

Author: antonio
Date: Fri Feb 27 21:14:56 2009
New Revision: 748702

URL: http://svn.apache.org/viewvc?rev=748702&view=rev
Log:
Replace weird char with whitespace.

Modified:
    lenya/branches/BRANCH_2_0_X/src/modules/notification/java/src/org/apache/lenya/notification/Message.java

Modified: lenya/branches/BRANCH_2_0_X/src/modules/notification/java/src/org/apache/lenya/notification/Message.java
URL: http://svn.apache.org/viewvc/lenya/branches/BRANCH_2_0_X/src/modules/notification/java/src/org/apache/lenya/notification/Message.java?rev=748702&r1=748701&r2=748702&view=diff
==============================================================================
--- lenya/branches/BRANCH_2_0_X/src/modules/notification/java/src/org/apache/lenya/notification/Message.java (original)
+++ lenya/branches/BRANCH_2_0_X/src/modules/notification/java/src/org/apache/lenya/notification/Message.java Fri Feb 27 21:14:56 2009
@@ -27,14 +27,14 @@
  * A notification message.
  */
 public class Message {
-    
+
     private Text subject;
     private Text body;
 
     private Identifiable sender;
     private Identifiable[] recipients;
     private Date time;
-    
+
     /**
      * @param subject The subject.
      * @param body The body.
@@ -61,7 +61,7 @@
      * @param bodyParams The body parameters.
      * @param sender The sender.
      * @param recipients The recipients.
-     * @deprecated Use {@link #Message(Text, Text, Identifiable, Identifiable[])}ĂŠinstead.
+     * @deprecated Use {@link #Message(Text, Text, Identifiable, Identifiable[])} instead.
      */
     public Message(String subject, String[] subjectParams, String body, String[] bodyParams,
             Identifiable sender, Identifiable[] recipients) {
@@ -130,14 +130,14 @@
     public String[] getSubjectParameters() {
         return convert(this.subject.getParameters());
     }
-    
+
     /**
      * @return The sender.
      */
     public Identifiable getSender() {
         return this.sender;
     }
-    
+
     /**
      * @return The recipients.
      */
@@ -146,21 +146,21 @@
         return (Identifiable[]) Arrays.asList(this.recipients).toArray(
                 new Identifiable[this.recipients.length]);
     }
-    
+
     /**
      * @return The time when the message was sent.
      */
     public Date getTime() {
         return (Date)this.time.clone();
     }
-    
+
     /**
      * @return The message subject.
      */
     public Text getSubjectText() {
         return this.subject;
     }
-    
+
     /**
      * @return The message body.
      */



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org