Skip to content
Snippets Groups Projects
Commit e97ca3ac authored by dgelessus's avatar dgelessus
Browse files

Expand Javadoc for generated deprecated Lexer.unread method

To fix downstream Javadoc warnings about missing param/throws info.
parent 6a18ab9c
No related branches found
No related tags found
No related merge requests found
Pipeline #135194 passed
...@@ -597,6 +597,8 @@ public class Lexer ...@@ -597,6 +597,8 @@ public class Lexer
* @deprecated This method doesn't restore line/column info correctly in some cases * @deprecated This method doesn't restore line/column info correctly in some cases
* (if a token begins in the middle of a CRLF newline pair). * (if a token begins in the middle of a CRLF newline pair).
* There is no planned replacement. * There is no planned replacement.
* @param token the token to push back onto the input
* @throws IOException when thrown by {@link PushbackReader#unread(int)}
*/ */
@Deprecated @Deprecated
protected void unread(Token token) throws IOException protected void unread(Token token) throws IOException
......
...@@ -296,6 +296,8 @@ Macro:LexerBody ...@@ -296,6 +296,8 @@ Macro:LexerBody
* @deprecated This method doesn't restore line/column info correctly in some cases * @deprecated This method doesn't restore line/column info correctly in some cases
* (if a token begins in the middle of a CRLF newline pair). * (if a token begins in the middle of a CRLF newline pair).
* There is no planned replacement. * There is no planned replacement.
* @param token the token to push back onto the input
* @throws IOException when thrown by {@link PushbackReader#unread(int)}
*/ */
@Deprecated @Deprecated
protected void unread(Token token) throws IOException protected void unread(Token token) throws IOException
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment