Changeset 1391 for branches/GNU/src/gcc/libjava/java/security/Policy.java
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/security/Policy.java (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/security/Policy.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 86 86 // from the "java.security" configuration file. For now, just hard-code 87 87 // a stub implementation. 88 static private Policy currentPolicy 89 = new gnu.java.security.provider.DefaultPolicy(); 90 88 static private Policy currentPolicy = null; 89 static 90 { 91 String pp = System.getProperty ("policy.provider"); 92 if (pp != null) 93 try 94 { 95 currentPolicy = (Policy)Class.forName(pp).newInstance(); 96 } 97 catch (Exception _) 98 { 99 currentPolicy = null; 100 } 101 if (currentPolicy == null) 102 currentPolicy = new gnu.java.security.provider.DefaultPolicy(); 103 } 104 91 105 /** 92 106 Constructs a new Policy class. -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
