You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by be...@apache.org on 2006/07/04 15:46:33 UTC

svn commit: r419007 - /james/server/trunk/src/java/org/apache/james/pop3server/POP3HandlerChain.java

Author: berndf
Date: Tue Jul  4 06:46:32 2006
New Revision: 419007

URL: http://svn.apache.org/viewvc?rev=419007&view=rev
Log:
minor code cleanups

Modified:
    james/server/trunk/src/java/org/apache/james/pop3server/POP3HandlerChain.java

Modified: james/server/trunk/src/java/org/apache/james/pop3server/POP3HandlerChain.java
URL: http://svn.apache.org/viewvc/james/server/trunk/src/java/org/apache/james/pop3server/POP3HandlerChain.java?rev=419007&r1=419006&r2=419007&view=diff
==============================================================================
--- james/server/trunk/src/java/org/apache/james/pop3server/POP3HandlerChain.java (original)
+++ james/server/trunk/src/java/org/apache/james/pop3server/POP3HandlerChain.java Tue Jul  4 06:46:32 2006
@@ -49,8 +49,8 @@
 
     private final static String[] mandatoryCommands = { "USER" , "PASS", "LIST"};
 
-    public void service(ServiceManager arg0) throws ServiceException {
-        serviceManager = arg0;
+    public void service(ServiceManager serviceManager) throws ServiceException {
+        this.serviceManager = serviceManager;
     }
 
 
@@ -188,7 +188,7 @@
     /**
      * Returns all the configured commandhandlers for the specified command
      *
-     * @param commandName the command name which will be key
+     * @param command the command name which will be key
      * @return List of commandhandlers
      */
     List getCommandHandlers(String command) {



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org