yoavs       2004/05/26 09:35:54

  Modified:    modules/cluster/src/share/org/apache/catalina/cluster/mcast
                        McastMember.java
  Log:
  Minor JavaDoc fixes (Bugzilla 28335)
  
  Revision  Changes    Path
  1.5       +3 -5      
jakarta-tomcat-catalina/modules/cluster/src/share/org/apache/catalina/cluster/mcast/McastMember.java
  
  Index: McastMember.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/modules/cluster/src/share/org/apache/catalina/cluster/mcast/McastMember.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- McastMember.java  27 Feb 2004 14:58:55 -0000      1.4
  +++ McastMember.java  26 May 2004 16:35:54 -0000      1.5
  @@ -86,7 +86,7 @@
   
       /**
        *
  -     * @returns a Hashmap containing the following properties:<BR>
  +     * @return a Hashmap containing the following properties:<BR>
        * 1. tcpListenPort - the port this member listens to for messages - string<BR>
        * 2. tcpListenHost - the host address of this member - string<BR>
        * 3. memberName    - the name of this member - string<BR>
  @@ -194,14 +194,13 @@
   
       /**
        * String representation of this object
  -     * @return
        */
       public String toString()  {
           return 
"org.apache.catalina.cluster.mcast.McastMember["+name+","+host+","+port+", 
alive="+memberAliveTime+"]";
       }
   
       /**
  -     * @see java.lang.Object.hashCode()
  +     * @see java.lang.Object#hashCode()
        * @return
        */
       public int hashCode() {
  @@ -211,7 +210,6 @@
       /**
        * Returns true if the param o is a McastMember with the same name
        * @param o
  -     * @return
        */
       public boolean equals(Object o) {
           if ( o instanceof McastMember )    {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to