Fix a couple of errorprone issues

This commit is contained in:
James Agnew 2017-10-15 11:50:49 -04:00
parent 9ca85b4cf3
commit 22cd9d8641
1 changed files with 3 additions and 0 deletions

View File

@ -364,6 +364,7 @@ public class JsonTrackingParser {
break;
case Eof :
throw lexer.error("Unexpected End of File");
case End:
default:
break;
}
@ -407,6 +408,8 @@ public class JsonTrackingParser {
break;
case Eof :
throw lexer.error("Unexpected End of File");
case Boolean:
case End:
default:
break;
}