2005-04-26 Michael Koch <konqueror@gmx.de>

* java/lang/System.java
	(setSecurityManager): Fixed comment.
	(getSecurityManager): Removed obsolete comment.

From-SVN: r98763
This commit is contained in:
Michael Koch 2005-04-26 05:09:35 +00:00 committed by Michael Koch
parent c3bdeea8f3
commit 57fc483297
2 changed files with 9 additions and 5 deletions

View file

@ -177,9 +177,9 @@ public final class System
*/
public static synchronized void setSecurityManager(SecurityManager sm)
{
// 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.
// Implementation note: the field lives in SecurityManager 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 (SecurityManager.current != null)
SecurityManager.current.checkPermission
(new RuntimePermission("setSecurityManager"));
@ -194,8 +194,6 @@ public final class System
*/
public static SecurityManager getSecurityManager()
{
// Implementation note: the field lives in Runtime because of bootstrap
// initialization issues.
return SecurityManager.current;
}