Skip to content

Commit 79dc30f

Browse files
style: fix minor Q/A exceptions
Signed-off-by: Andreas Reichel <[email protected]> Signed-off-by: manticore-projects <[email protected]>
1 parent e9e157b commit 79dc30f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/sf/jsqlparser/util/deparser/StatementDeParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ public <S> StringBuilder visit(ShowTablesStatement showTables, S context) {
306306
public <S> StringBuilder visit(Block block, S context) {
307307
buffer.append("BEGIN\n");
308308
if (block.getStatements() != null) {
309-
for (Statement stmt : block.getStatements().getStatements()) {
309+
for (Statement stmt : block.getStatements()) {
310310
stmt.accept(this, context);
311311
buffer.append(";\n");
312312
}

0 commit comments

Comments
 (0)