'Illegal fallthrough' entfernt

This commit is contained in:
luca9913 2023-03-15 18:41:04 +01:00
parent 31ee90b3ff
commit a8012a3ea6

View File

@ -884,7 +884,6 @@ public class StatementGenerator {
return new Literal(type, Boolean.parseBoolean(boolliteral.getText()), boolliteral.getStart());
case NullLiteralContext nullliteral:
return new Literal(TypePlaceholder.fresh(nullliteral.getStart()), null, nullliteral.getStart());
case TextBlockContext textblock:
default:
throw new NotImplementedException();
}