You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2008/01/31 20:26:55 UTC

svn commit: r617193 - /httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie.java

Author: sebb
Date: Thu Jan 31 11:26:47 2008
New Revision: 617193

URL: http://svn.apache.org/viewvc?rev=617193&view=rev
Log:
Fix Javadoc complaints

Modified:
    httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie.java

Modified: httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie.java?rev=617193&r1=617192&r2=617193&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie.java (original)
+++ httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie.java Thu Jan 31 11:26:47 2008
@@ -63,7 +63,7 @@
      *
      * @param expiryDate the {@link Date} after which this cookie is no longer valid.
      *
-     * @see #getExpiryDate
+     * @see Cookie#getExpiryDate
      *
      */
     void setExpiryDate (Date expiryDate);
@@ -73,7 +73,7 @@
      * 
      * @param domain The value of the domain attribute
      *
-     * @see #getDomain
+     * @see Cookie#getDomain
      */
     void setDomain(String domain);
 
@@ -82,7 +82,7 @@
      *
      * @param path The value of the path attribute
      *
-     * @see #getPath
+     * @see Cookie#getPath
      *
      */
     void setPath(String path);
@@ -107,7 +107,7 @@
      *
      * @param version the version of the cookie.
      * 
-     * @see #getVersion
+     * @see Cookie#getVersion
      */
     void setVersion(int version);