Skip to content

Commit

Permalink
style: fix minor Q/A exceptions
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
Signed-off-by: manticore-projects <andreas@manticore-projects.com>
  • Loading branch information
manticore-projects committed Jul 28, 2024
1 parent e9e157b commit 79dc30f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public <S> StringBuilder visit(ShowTablesStatement showTables, S context) {
public <S> StringBuilder visit(Block block, S context) {
buffer.append("BEGIN\n");
if (block.getStatements() != null) {
for (Statement stmt : block.getStatements().getStatements()) {
for (Statement stmt : block.getStatements()) {
stmt.accept(this, context);
buffer.append(";\n");
}
Expand Down

0 comments on commit 79dc30f

Please sign in to comment.