From b718e427a66321e67e7afdd76d45df98292c8bd2 Mon Sep 17 00:00:00 2001
From: "Gary D. Gregory"
Date: Thu, 21 Aug 2014 15:23:21 +0000
Subject: [PATCH] Fix bogus javadoc.
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1619434 13f79535-47bb-0310-9956-ffa450edef68
---
.../http/impl/cookie/RFC2965DomainAttributeHandler.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/httpclient/src/main/java/org/apache/http/impl/cookie/RFC2965DomainAttributeHandler.java b/httpclient/src/main/java/org/apache/http/impl/cookie/RFC2965DomainAttributeHandler.java
index 097f535ca..04893acd9 100644
--- a/httpclient/src/main/java/org/apache/http/impl/cookie/RFC2965DomainAttributeHandler.java
+++ b/httpclient/src/main/java/org/apache/http/impl/cookie/RFC2965DomainAttributeHandler.java
@@ -86,10 +86,10 @@ public class RFC2965DomainAttributeHandler implements CookieAttributeHandler {
* Host A's name domain-matches host B's if
*
*
- * their host name strings string-compare equal; or
- * A is a HDN string and has the form NB, where N is a non-empty
+ * - their host name strings string-compare equal; or
+ * - A is a HDN string and has the form NB, where N is a non-empty
* name string, B has the form .B', and B' is a HDN string. (So,
- * x.y.com domain-matches .Y.com but not Y.com.)
+ * x.y.com domain-matches .Y.com but not Y.com.)
*
*
* @param host host name where cookie is received from or being sent to.