why is SecurityManager null?
I use -Djava.security.Manager when running the test app and then call:
java.lang.SecurityManager sm = System.getSecurityManager();
System.out.println(sm ==null);
It always prints true! Why? How do I make the SecurityManager not null?

