diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-25 20:35:17 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-25 20:35:17 +0000 |
commit | 3b0f3ecbb33e183e50dad80618d6616cebbfe18f (patch) | |
tree | ec38f37fff1c149be7ad3e52f4c403a76e3a1733 /libjava/java/lang/System.java | |
parent | ae15b0afd8830f1c37bacfaa256bf6ab9f63a9bc (diff) | |
download | ppe42-gcc-3b0f3ecbb33e183e50dad80618d6616cebbfe18f.tar.gz ppe42-gcc-3b0f3ecbb33e183e50dad80618d6616cebbfe18f.zip |
2005-04-25 Michael Koch <konqueror@gmx.de>
* java/lang/Runtime.java,
java/lang/SecurityManager.java,
java/lang/System.java,
java/lang/ThreadGroup.java:
Replaced java.lang.Runtime.securityManager by
java.lang.SecurityManager.current (as used in GNU classpath).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98738 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/lang/System.java')
-rw-r--r-- | libjava/java/lang/System.java | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libjava/java/lang/System.java b/libjava/java/lang/System.java index b621f265ff9..8632d0b7d5d 100644 --- a/libjava/java/lang/System.java +++ b/libjava/java/lang/System.java @@ -120,7 +120,7 @@ public final class System */ public static void setIn(InputStream in) { - SecurityManager sm = Runtime.securityManager; // Be thread-safe. + SecurityManager sm = SecurityManager.current; // Be thread-safe. if (sm != null) sm.checkPermission(new RuntimePermission("setIO")); setIn0(in); @@ -137,7 +137,7 @@ public final class System */ public static void setOut(PrintStream out) { - SecurityManager sm = Runtime.securityManager; // Be thread-safe. + SecurityManager sm = SecurityManager.current; // Be thread-safe. if (sm != null) sm.checkPermission(new RuntimePermission("setIO")); @@ -155,7 +155,7 @@ public final class System */ public static void setErr(PrintStream err) { - SecurityManager sm = Runtime.securityManager; // Be thread-safe. + SecurityManager sm = SecurityManager.current; // Be thread-safe. if (sm != null) sm.checkPermission(new RuntimePermission("setIO")); setErr0(err); @@ -180,10 +180,10 @@ public final class System // Implementation note: the field lives in Runtime because of bootstrap // initialization issues. This method is synchronized so that no other // thread changes it to null before this thread makes the change. - if (Runtime.securityManager != null) - Runtime.securityManager.checkPermission + if (SecurityManager.current != null) + SecurityManager.current.checkPermission (new RuntimePermission("setSecurityManager")); - Runtime.securityManager = sm; + SecurityManager.current = sm; } /** @@ -196,7 +196,7 @@ public final class System { // Implementation note: the field lives in Runtime because of bootstrap // initialization issues. - return Runtime.securityManager; + return SecurityManager.current; } /** @@ -309,7 +309,7 @@ public final class System */ public static Properties getProperties() { - SecurityManager sm = Runtime.securityManager; // Be thread-safe. + SecurityManager sm = SecurityManager.current; // Be thread-safe. if (sm != null) sm.checkPropertiesAccess(); return SystemProperties.getProperties(); @@ -326,7 +326,7 @@ public final class System */ public static void setProperties(Properties properties) { - SecurityManager sm = Runtime.securityManager; // Be thread-safe. + SecurityManager sm = SecurityManager.current; // Be thread-safe. if (sm != null) sm.checkPropertiesAccess(); SystemProperties.setProperties(properties); @@ -344,7 +344,7 @@ public final class System */ public static String getProperty(String key) { - SecurityManager sm = Runtime.securityManager; // Be thread-safe. + SecurityManager sm = SecurityManager.current; // Be thread-safe. if (sm != null) sm.checkPropertyAccess(key); else if (key.length() == 0) @@ -365,7 +365,7 @@ public final class System */ public static String getProperty(String key, String def) { - SecurityManager sm = Runtime.securityManager; // Be thread-safe. + SecurityManager sm = SecurityManager.current; // Be thread-safe. if (sm != null) sm.checkPropertyAccess(key); return SystemProperties.getProperty(key, def); @@ -385,7 +385,7 @@ public final class System */ public static String setProperty(String key, String value) { - SecurityManager sm = Runtime.securityManager; // Be thread-safe. + SecurityManager sm = SecurityManager.current; // Be thread-safe. if (sm != null) sm.checkPermission(new PropertyPermission(key, "write")); return SystemProperties.setProperty(key, value); @@ -407,7 +407,7 @@ public final class System { if (name == null) throw new NullPointerException(); - SecurityManager sm = Runtime.securityManager; // Be thread-safe. + SecurityManager sm = SecurityManager.current; // Be thread-safe. if (sm != null) sm.checkPermission(new RuntimePermission("getenv." + name)); return getenv0(name); |