From 2c2ed8bf4eb038b8b3dea670833d24d1caae7266 Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Thu, 2 Oct 2014 09:38:06 +0200 Subject: [PATCH] typo in javadoc --- source/net/yacy/cora/protocol/HeaderFramework.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source/net/yacy/cora/protocol/HeaderFramework.java b/source/net/yacy/cora/protocol/HeaderFramework.java index e7886b444..4e67927cb 100644 --- a/source/net/yacy/cora/protocol/HeaderFramework.java +++ b/source/net/yacy/cora/protocol/HeaderFramework.java @@ -675,11 +675,11 @@ public class HeaderFramework extends TreeMap implements Mapnull - cookie will stay forever + * @param expires when should this cookie be automatically deleted. If null - cookie will stay forever * @param path Path the cookie belongs to. Default - "/". Can be null. * @param domain Domain this cookie belongs to. Default - domain name. Can be null. * - * Note: this cookie will be sent over each connection independend if it is safe connection or not. + * Note: this cookie will be sent over each connection independent if it is safe connection or not. * @see further documentation: docs.sun.com */ public void setCookie(final String name, final String value, final String expires, final String path, final String domain) @@ -691,10 +691,10 @@ public class HeaderFramework extends TreeMap implements Mapnull - cookie will stay forever + * @param expires when should this cookie be automatically deleted. If null - cookie will stay forever * @param path Path the cookie belongs to. Default - "/". Can be null. * - * Note: this cookie will be sent over each connection independend if it is safe connection or not. + * Note: this cookie will be sent over each connection independent if it is safe connection or not. * @see further documentation: docs.sun.com */ public void setCookie(final String name, final String value, final String expires, final String path) @@ -706,9 +706,9 @@ public class HeaderFramework extends TreeMap implements Mapnull - cookie will stay forever + * @param expires when should this cookie be automatically deleted. If null - cookie will stay forever * - * Note: this cookie will be sent over each connection independend if it is safe connection or not. + * Note: this cookie will be sent over each connection independent if it is safe connection or not. * @see further documentation: docs.sun.com */ public void setCookie(final String name, final String value, final String expires) @@ -721,7 +721,7 @@ public class HeaderFramework extends TreeMap implements Mapdocs.sun.com */ public void setCookie(final String name, final String value )