core: fix missing imports for anonymous classes

This commit is contained in:
Skylot
2014-03-02 22:30:26 +04:00
parent 56c0a588de
commit b1dc26ee06
@@ -463,7 +463,7 @@ public class ClassGen {
}
public ClassGen getParentGen() {
return parentGen;
return parentGen == null ? this : parentGen;
}
public AnnotationGen getAnnotationGen() {