--- old/src/jdk.httpserver/share/classes/com/sun/net/httpserver/Headers.java 2015-04-28 20:03:53.255593439 +0400 +++ new/src/jdk.httpserver/share/classes/com/sun/net/httpserver/Headers.java 2015-04-28 20:03:53.023593439 +0400 @@ -29,18 +29,21 @@ /** * HTTP request and response headers are represented by this class which implements - * the interface {@link java.util.Map}< - * {@link java.lang.String},{@link java.util.List}<{@link java.lang.String}>>. + * the interface + * {@link java.util.Map}{@literal <}{@link java.lang.String}, {@link java.util.List} + * {@literal <}{@link java.lang.String}{@literal >>}. * The keys are case-insensitive Strings representing the header names and - * the value associated with each key is a {@link List}<{@link String}> with one + * the value associated with each key is + * a {@link List}{@literal <}{@link String}{@literal >} with one * element for each occurrence of the header name in the request or response. *

- * For example, if a response header instance contains one key "HeaderName" with two values "value1 and value2" + * For example, if a response header instance contains + * one key "HeaderName" with two values "value1 and value2" * then this object is output as two header lines: *

  * HeaderName: value1
  * HeaderName: value2
- * 
+ * *

* All the normal {@link java.util.Map} methods are provided, but the following * additional convenience methods are most likely to be used: