This commit is contained in:
Stéphane Nicoll
2023-11-10 16:41:30 +01:00
parent a97ecf7a29
commit f5453cc445
5 changed files with 8 additions and 8 deletions

View File

@@ -99,7 +99,7 @@ public class CodeFlow implements Opcodes {
this.className = className;
this.classWriter = classWriter;
this.compilationScopes = new ArrayDeque<>();
this.compilationScopes.add(new ArrayList<String>());
this.compilationScopes.add(new ArrayList<>());
}