7017675: typo in JavacParser for allowUnderscoresInLiterals

Reviewed-by: dlsmith
This commit is contained in:
Peter B. Kessler 2011-02-07 11:42:12 -08:00 committed by Jonathan Gibbons
parent dfec6e2301
commit fef1c1e816

@ -138,7 +138,7 @@ public class Scanner implements Lexer {
source = fac.source;
allowBinaryLiterals = source.allowBinaryLiterals();
allowHexFloats = source.allowHexFloats();
allowUnderscoresInLiterals = source.allowBinaryLiterals();
allowUnderscoresInLiterals = source.allowUnderscoresInLiterals();
}
private static final boolean hexFloatsWork = hexFloatsWork();