Fixing malformed Javadoc warnings in jetty-http

This commit is contained in:
Joakim Erdfelt 2013-08-14 12:26:00 -07:00
parent d1631b69af
commit aef8071d1d
2 changed files with 3 additions and 4 deletions

View File

@ -1493,7 +1493,6 @@ public class HttpParser
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** Called to signal that an EOF was received unexpectedly /** Called to signal that an EOF was received unexpectedly
* during the parsing of a HTTP message * during the parsing of a HTTP message
* @return True if the parser should return to its caller
*/ */
public void earlyEOF(); public void earlyEOF();
@ -1524,7 +1523,7 @@ public class HttpParser
/** /**
* This is the method called by the parser after it has parsed the host header (and checked it's format). This is * This is the method called by the parser after it has parsed the host header (and checked it's format). This is
* called after the {@link HttpHandler#parsedHeader(HttpField) methods and before * called after the {@link HttpHandler#parsedHeader(HttpField)} methods and before
* HttpHandler#headerComplete(); * HttpHandler#headerComplete();
*/ */
public abstract boolean parsedHostHeader(String host,int port); public abstract boolean parsedHostHeader(String host,int port);

View File

@ -41,8 +41,8 @@ public class HttpParserTest
{ {
/* ------------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------------- */
/** /**
* Parse until {@link #END END} state. * Parse until {@link State#END} state.
* If the parser is already in the END state, then it is {@link #reset reset} and re-parsed. * If the parser is already in the END state, then it is {@link HttpParser#reset()} and re-parsed.
* @param parser The parser to test * @param parser The parser to test
* @throws IllegalStateException If the buffers have already been partially parsed. * @throws IllegalStateException If the buffers have already been partially parsed.
*/ */