stack overflow while compiling
I'm trying to compile a Javabean and get the following error (with the first few lines of the stack trace). How do I go about getting this to compile?
The system is out of resources.
Consult the following stack trace for details.
java.lang.StackOverflowError
at com.sun.tools.javac.jvm.Code.markStatBegin(Code.java:1388)
at com.sun.tools.javac.jvm.Code.emitop(Code.java:310)
at com.sun.tools.javac.jvm.Code.emitop0(Code.java:411)
at com.sun.tools.javac.jvm.Items$SelfItem.load(Items.java:347)
at com.sun.tools.javac.jvm.Gen.visitIdent(Gen.java:2034)
at com.sun.tools.javac.tree.Tree$Ident.accept(Tree.java:1003)
at com.sun.tools.javac.jvm.Gen.genExpr(Gen.java:806)
at com.sun.tools.javac.jvm.Gen.visitApply(Gen.java:1601)
at com.sun.tools.javac.tree.Tree$Apply.accept(Tree.java:813)
....
....
( I do have the full stack trace saved. The above is just the first few lines)

