FULL PRODUCT VERSION :
ADDITIONAL OS VERSION INFORMATION :
MAC OS Mavricks
A DESCRIPTION OF THE PROBLEM :
the checkKind() method of the Token class in Parser\Tokens.java in the javac source code is this:
protected void checkKind() {
if (kind.tag != Tag.DEFAULT) {
throw new AssertionError("Bad token kind - expected " + Tag.STRING);
}
}
shouldn't this be throw new AssertionError("Bad token kind - expected " + Tag.DEFAULT); instead for the base class?
ERROR MESSAGES/STACK TRACES THAT OCCUR :
Since this is an internal check, I don't know if would be an issue for the average Java user, unless it is triggered by other internal error somewhere. If you all have fixed this in the latest release, please disregard, thanks!
REPRODUCIBILITY :
This bug can be reproduced always.
ADDITIONAL OS VERSION INFORMATION :
MAC OS Mavricks
A DESCRIPTION OF THE PROBLEM :
the checkKind() method of the Token class in Parser\Tokens.java in the javac source code is this:
protected void checkKind() {
if (kind.tag != Tag.DEFAULT) {
throw new AssertionError("Bad token kind - expected " + Tag.STRING);
}
}
shouldn't this be throw new AssertionError("Bad token kind - expected " + Tag.DEFAULT); instead for the base class?
ERROR MESSAGES/STACK TRACES THAT OCCUR :
Since this is an internal check, I don't know if would be an issue for the average Java user, unless it is triggered by other internal error somewhere. If you all have fixed this in the latest release, please disregard, thanks!
REPRODUCIBILITY :
This bug can be reproduced always.