OpenJDK6 line 330 of AccessControlContext:
| if (!dumpDebug) {
| debug.println("access denied " + perm);
| }
|
OpenJDK7:
| if (dumpDebug) {
| debug.println("access denied " + perm);
| }
|
So definitely this got fixed in openjdk7.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4242719#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...