Already support httpOnly - update comments
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 10 Jan 2009 13:43:09 +0000 (13:43 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 10 Jan 2009 13:43:09 +0000 (13:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@733272 13f79535-47bb-0310-9956-ffa450edef68

java/javax/servlet/http/Cookie.java

index 22897e0..bd85198 100644 (file)
@@ -88,8 +88,7 @@ public class Cookie implements Cloneable {
     private String path;       // ;Path=VALUE ... URLs that see the cookie
     private boolean secure;    // ;Secure ... e.g. use SSL
     private int version = 0;   // ;Version=1 ... means RFC 2109++ style
-    // TODO SERVLET3
-    private boolean httpOnly;  // Not in the spec but supported by most browsers
+    private boolean httpOnly;  // Not in cookie specs, but supported by browsers
     
 
     /**