Fixing malformed Javadoc warnings in jetty-servlets

This commit is contained in:
Joakim Erdfelt 2013-08-14 12:46:06 -07:00
parent 7fb7fe71ec
commit 61bda536da
3 changed files with 3 additions and 9 deletions

View File

@ -43,9 +43,9 @@ import org.eclipse.jetty.server.HttpOutput;
* static content at a limited data rate.
* <p>
* Two implementations are supported: <ul>
* <li>the {@link StandardDataStream} impl uses only standard
* <li>The <code>StandardDataStream</code> impl uses only standard
* APIs, but produces more garbage due to the byte[] nature of the API.
* <li>the {@link JettyDataStream} impl uses a Jetty API to write a ByteBuffer
* <li>the <code>JettyDataStream</code> impl uses a Jetty API to write a ByteBuffer
* and thus allow the efficient use of file mapped buffers without any
* temporary buffer copies (I did tell the JSR that this was a good idea to
* have in the standard!).

View File

@ -1055,7 +1055,7 @@ public class DoSFilter implements Filter
*
* @param address the address to remove
* @return whether the address was removed from the list
* @see #addWhitelistAddress(List, String)
* @see #addWhitelistAddress(String)
*/
@ManagedOperation("removes an IP address that will not be rate limited")
public boolean removeWhitelistAddress(@Name("address") String address)

View File

@ -343,17 +343,11 @@ public abstract class AbstractCompressedStream extends ServletOutputStream
}
}
/**
* @see org.eclipse.jetty.servlets.gzip.CompressedStream#getOutputStream()
*/
public OutputStream getOutputStream()
{
return _out;
}
/**
* @see org.eclipse.jetty.http.gzip.CompressedStream#isClosed()
*/
public boolean isClosed()
{
return _closed;