/[classpath]/classpath/java/security/SecureClassLoader.java
ViewVC logotype

Diff of /classpath/java/security/SecureClassLoader.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by mark, Tue Jan 22 22:27:00 2002 UTC revision 1.7 by cbj, Mon Mar 25 05:12:19 2002 UTC
# Line 51  public class SecureClassLoader extends C Line 51  public class SecureClassLoader extends C
51    protected SecureClassLoader(ClassLoader parent)    protected SecureClassLoader(ClassLoader parent)
52    {    {
53      super(parent);      super(parent);
54      // FIXME: What else?      SecurityManager sm = System.getSecurityManager();
55        if(sm != null)
56          sm.checkCreateClassLoader();
57    }    }
58    
59    protected SecureClassLoader()    protected SecureClassLoader()
60    {    {
61      // FIXME: What do we need to do here?      SecurityManager sm = System.getSecurityManager();
62        if(sm != null)
63          sm.checkCreateClassLoader();
64    }    }
65    
66    /**    /**

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26