From d0429634eeb2a0b50cbf76097db5480516d3217d Mon Sep 17 00:00:00 2001 From: markt Date: Sat, 10 Jan 2009 13:43:09 +0000 Subject: [PATCH] Already support httpOnly - update comments git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@733272 13f79535-47bb-0310-9956-ffa450edef68 --- java/javax/servlet/http/Cookie.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/java/javax/servlet/http/Cookie.java b/java/javax/servlet/http/Cookie.java index 22897e03e..bd85198d6 100644 --- a/java/javax/servlet/http/Cookie.java +++ b/java/javax/servlet/http/Cookie.java @@ -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 /** -- 2.11.0