From f0692ff5f9e39cbd1c203e9d5abebf55a3d0f6fc Mon Sep 17 00:00:00 2001 From: Emanuele Grasso <96300448+L0P0P@users.noreply.github.com> Date: Sat, 6 Jul 2024 09:47:25 +0200 Subject: Fixed the print of the ast and some warnings (#19) Co-authored-by: Santo Cariotti --- src/ast/nodes/CompForNode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ast/nodes/CompForNode.java') diff --git a/src/ast/nodes/CompForNode.java b/src/ast/nodes/CompForNode.java index b7c6924..405a400 100644 --- a/src/ast/nodes/CompForNode.java +++ b/src/ast/nodes/CompForNode.java @@ -23,7 +23,7 @@ public class CompForNode implements Node { @Override public ArrayList checkSemantics(SymbolTable ST, int _nesting) { - ArrayList errors = new ArrayList(); + ArrayList errors = new ArrayList<>(); errors.addAll(exprlist.checkSemantics(ST, _nesting)); errors.addAll(single_expr.checkSemantics(ST, _nesting)); -- cgit v1.2.3-18-g5258