< prev index next >

src/java.xml/share/classes/org/xml/sax/helpers/SecuritySupport.java

Print this page

        

*** 98,108 **** boolean doesFileExist(final File f) { return ((Boolean) AccessController.doPrivileged(new PrivilegedAction() { public Object run() { ! return new Boolean(f.exists()); } })).booleanValue(); } } --- 98,108 ---- boolean doesFileExist(final File f) { return ((Boolean) AccessController.doPrivileged(new PrivilegedAction() { public Object run() { ! return f.exists(); } })).booleanValue(); } }
< prev index next >