Revert "update comment on consume()"

This reverts commit 27a8e5e521.
This commit is contained in:
Terence Parr 2012-10-14 18:46:54 -07:00
parent 54871d52ff
commit 327a3a0100
1 changed files with 3 additions and 3 deletions

View File

@ -79,9 +79,9 @@ public interface IntStream {
* filtering streams (e.g. {@link CommonTokenStream} which distinguishes
* between "on-channel" and "off-channel" tokens).
*
* @throws IllegalStateException if an attempt is made to consume past
* end of the stream (i.e. if last char == {@link #EOF EOF} before calling
* {@code consume}). Sometimes need to match EOF during prediction.
* @throws IllegalStateException if an attempt is made to consume the the
* end of the stream (i.e. if {@code LA(1)==}{@link #EOF EOF} before calling
* {@code consume}).
*/
void consume();