diff options
author | Mark Wielaard <mark@klomp.org> | 2004-09-26 17:11:14 +0000 |
---|---|---|
committer | Mark Wielaard <mark@gcc.gnu.org> | 2004-09-26 17:11:14 +0000 |
commit | 3bd2680ed5ffc1442ece7ea37ea0439b8358ac6d (patch) | |
tree | 8216ff17334ba7edd9f96ffe031f73711711acc6 /libjava/java/lang/System.java | |
parent | 54df0e3ead94d938c820faddb4f0bd18d764dce1 (diff) | |
download | gcc-3bd2680ed5ffc1442ece7ea37ea0439b8358ac6d.zip gcc-3bd2680ed5ffc1442ece7ea37ea0439b8358ac6d.tar.gz gcc-3bd2680ed5ffc1442ece7ea37ea0439b8358ac6d.tar.bz2 |
System.java (properties): Make package private.
2004-09-26 Mark Wielaard <mark@klomp.org>
* java/lang/System.java (properties): Make package private.
* java/lang/Throwable.java (StaticData.nl): Initialize through
directly accessing System.properties.getProperty().
* java/lang/Throwable.java (nl): Remove static field.
(StaticData): New private static inner class.
(stackTraceStringBuffer): Use StaticData.nl.
From-SVN: r88133
Diffstat (limited to 'libjava/java/lang/System.java')
-rw-r--r-- | libjava/java/lang/System.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/lang/System.java b/libjava/java/lang/System.java index 13926b1..68add34 100644 --- a/libjava/java/lang/System.java +++ b/libjava/java/lang/System.java @@ -133,7 +133,7 @@ public final class System */ // Note that we use clone here and not new. Some programs assume // that the system properties do not have a parent. - private static Properties properties + static Properties properties = (Properties) Runtime.defaultProperties.clone(); /** |