Closes gh-1669
This commit is contained in:
igor-suhorukov
2018-02-09 00:07:43 +03:00
committed by Stephane Nicoll
parent fb61af1882
commit 4c888d0f32
6 changed files with 7 additions and 7 deletions

View File

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