--- old/src/jdk.httpserver/share/classes/com/sun/net/httpserver/Filter.java 2015-04-28 20:03:52.683593440 +0400 +++ new/src/jdk.httpserver/share/classes/com/sun/net/httpserver/Filter.java 2015-04-28 20:03:52.447593440 +0400 @@ -72,7 +72,7 @@ * exchange handler will not be invoked. * @param exchange the HttpExchange * @throws IOException let exceptions pass up the stack - * @throws NullPointerException if exchange is null + * @throws NullPointerException if exchange is {@code null} */ public void doFilter (HttpExchange exchange) throws IOException { if (!iter.hasNext()) { @@ -86,14 +86,14 @@ /** * Asks this filter to pre/post-process the given exchange. The filter - * can :- + * can: *

- * @param exchange the HttpExchange to be filtered. + * to send back an appropriate response + * + * @param exchange the {@code HttpExchange} to be filtered. * @param chain the Chain which allows the next filter to be invoked. * @throws IOException may be thrown by any filter module, and if * caught, must be rethrown again. - * @throws NullPointerException if either exchange or chain are null + * @throws NullPointerException if either exchange or chain are {@code null} */ public abstract void doFilter (HttpExchange exchange, Chain chain) throws IOException;