You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mailet-api@james.apache.org by fe...@apache.org on 2011/09/08 14:15:56 UTC

svn commit: r1166650 - /james/mailet/api/trunk/src/main/java/org/apache/mailet/MailetContext.java

Author: felixk
Date: Thu Sep  8 12:15:56 2011
New Revision: 1166650

URL: http://svn.apache.org/viewvc?rev=1166650&view=rev
Log:
Fix javadoc

Modified:
    james/mailet/api/trunk/src/main/java/org/apache/mailet/MailetContext.java

Modified: james/mailet/api/trunk/src/main/java/org/apache/mailet/MailetContext.java
URL: http://svn.apache.org/viewvc/james/mailet/api/trunk/src/main/java/org/apache/mailet/MailetContext.java?rev=1166650&r1=1166649&r2=1166650&view=diff
==============================================================================
--- james/mailet/api/trunk/src/main/java/org/apache/mailet/MailetContext.java (original)
+++ james/mailet/api/trunk/src/main/java/org/apache/mailet/MailetContext.java Thu Sep  8 12:15:56 2011
@@ -167,7 +167,7 @@ public interface MailetContext {
      * the mailet log is specific to the mailet container.
      *
      * @param message the message to be written to the log
-     * @deprecated use {@link #log(String, LogLevel)}
+     * @deprecated use {@link #log(LogLevel level, String message)}
      */
     @Deprecated
     void log(String message);
@@ -179,7 +179,7 @@ public interface MailetContext {
      *
      * @param message the message to be written to the log
      * @param t the Throwable whose stack trace is to be written to the log
-     * @deprecated use {@link #log(String, Throwable, LogLevel)}
+     * @deprecated use {@link #log(LogLevel level, String message, Throwable t)}
      */
     @Deprecated
     void log(String message, Throwable t);