Commit b1dc26ee authored by Skylot's avatar Skylot

core: fix missing imports for anonymous classes

parent 56c0a588
......@@ -463,7 +463,7 @@ public class ClassGen {
}
public ClassGen getParentGen() {
return parentGen;
return parentGen == null ? this : parentGen;
}
public AnnotationGen getAnnotationGen() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment