WORK AROUND
Seems that running client 1.5 VM solves the problem.
###@###.### 10/4/04 16:52 GMT
I would suggest to try the next:
0. Try "-Xint" to run only java interpreter.
If you still have the problem - it is most likely in your code.
If the problem does not show up - it may be VM problem, try the next:
1. Exclude the compilation of the method org.openide.nodes.FilterNode.hashCode:
-XX:CompileCommand=exclude,org/openide/nodes/FilterNode,hashCode
2. You can also try to run fastdebug VM:
replace <java dir>/jre/lib/amd64/server/libjvm.so (save the original)
with /home/kvn/VM/amd64/libjvm.so (1.5 09/22 VM)
or with /net/koori.sfbay/p/jdk12/jdk/1.6.0/ea/b06/binaries/linux-amd64/jre/lib/amd64/server/libjvm.so (latest 1.6 VM)
Vladimir
###@###.### 10/4/04 20:01 GMT
Thanks Vladimir for your suggestions, I have updated the netbeans.org issue and I'll wait for responses. Ad. #1 - I am not sure we should disable just the hashCode method, maybe we should disable compilation of constructor or the whole FilterNode class.
###@###.### 10/5/04 06:19 GMT
|