diff options
Diffstat (limited to 'luni/src/main/java/java/net/HttpCookie.java')
-rw-r--r-- | luni/src/main/java/java/net/HttpCookie.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/luni/src/main/java/java/net/HttpCookie.java b/luni/src/main/java/java/net/HttpCookie.java index 3748b9f..dd81fd6 100644 --- a/luni/src/main/java/java/net/HttpCookie.java +++ b/luni/src/main/java/java/net/HttpCookie.java @@ -560,28 +560,6 @@ public final class HttpCookie implements Cloneable { } /** - * Returns the {@code HttpOnly} attribute. If {@code true} the cookie should not be accessible - * to scripts in a browser. - * - * @since 1.7 - * @hide 1.7 - */ - public boolean isHttpOnly() { - return httpOnly; - } - - /** - * Returns the {@code HttpOnly} attribute. If {@code true} the cookie should not be accessible - * to scripts in a browser. - * - * @since 1.7 - * @hide 1.7 - */ - public void setHttpOnly(boolean httpOnly) { - this.httpOnly = httpOnly; - } - - /** * Returns the value of this cookie. */ public String getValue() { |