set hidden channel num to 1 not 99. default is chan 0

This commit is contained in:
Terence Parr 2012-06-29 12:03:54 -07:00
parent f396b4dc82
commit e861902a10
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ public interface Token {
/** Anything on different channel than DEFAULT_CHANNEL is not parsed
* by parser.
*/
public static final int HIDDEN_CHANNEL = 99;
public static final int HIDDEN_CHANNEL = 1;
/** Get the text of the token */
String getText();