Typo in Java.io.File.canExecute ()
* @throws SecurityException
* If a security manager exists and its <code>{@link
* java.lang.SecurityManager#checkExec(java.lang.String)}</code>
* method denies read access to the file
* ^^^^^^^^^^^^^
* @since 1.6
*/
public boolean canExecute() {
It should read as "denies execute access to the file (or) method denies creation of subprocess"
* @throws SecurityException
* If a security manager exists and its <code>{@link
* java.lang.SecurityManager#checkExec(java.lang.String)}</code>
* method denies read access to the file
* ^^^^^^^^^^^^^
* @since 1.6
*/
public boolean canExecute() {
It should read as "denies execute access to the file (or) method denies creation of subprocess"
- relates to
-
JDK-6367405 File.setExecutable(false),File.setExecutable(false,true) does not disallow read operations
-
- Closed
-