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:
parent
64abe1e5a2
commit
a24d0b2de1
|
@ -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: ");
|
||||||
|
|
Loading…
Reference in New Issue