HTTPCLIENT-754: BasicClientCookie.toString() contains 'name' instead of 'value' when writing out cookie value

Contributed by Thomas Friol <thomas at anyware-tech.com>

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@631985 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2008-02-28 14:31:43 +00:00
parent 64abe1e5a2
commit a24d0b2de1
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ public class BasicClientCookie implements SetCookie, ClientCookie {
buffer.append("[name: "); buffer.append("[name: ");
buffer.append(this.name); buffer.append(this.name);
buffer.append("]"); buffer.append("]");
buffer.append("[name: "); buffer.append("[value: ");
buffer.append(this.value); buffer.append(this.value);
buffer.append("]"); buffer.append("]");
buffer.append("[domain: "); buffer.append("[domain: ");