You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "deven you (JIRA)" <ji...@apache.org> on 2009/02/17 08:12:59 UTC

[jira] Updated: (HARMONY-6093) [classlib][luni] Remove double security check in java.io.File

     [ https://issues.apache.org/jira/browse/HARMONY-6093?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

deven you updated HARMONY-6093:
-------------------------------

    Attachment: File.diff

> [classlib][luni] Remove double security check in java.io.File
> -------------------------------------------------------------
>
>                 Key: HARMONY-6093
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6093
>             Project: Harmony
>          Issue Type: Bug
>    Affects Versions: 5.0M8
>            Reporter: deven you
>         Attachments: File.diff
>
>
> there is a double security check in java.io.File.canRead():
>    public boolean canRead() {
>         SecurityManager security = System.getSecurityManager();
>         if (security != null) {
>             security.checkRead(path);
>         }
>         return exists() && !isWriteOnlyImpl(properPath(true));
>     }
> in exists(), it already do the security check:
>    public boolean exists() {
>         if (path.length() == 0) {
>             return false;
>         }
>         SecurityManager security = System.getSecurityManager();
>         if (security != null) {
>             security.checkRead(path);
>         }
>         return existsImpl(properPath(true));
>     }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.