Fixing malformed Javadoc warnings in jetty-servlets
This commit is contained in:
parent
7fb7fe71ec
commit
61bda536da
|
@ -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!).
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue