From 3bd2680ed5ffc1442ece7ea37ea0439b8358ac6d Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Sun, 26 Sep 2004 17:11:14 +0000 Subject: System.java (properties): Make package private. 2004-09-26 Mark Wielaard * 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 --- libjava/java/lang/System.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libjava/java/lang/System.java') diff --git a/libjava/java/lang/System.java b/libjava/java/lang/System.java index 13926b156b5..68add349dc3 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(); /** -- cgit v1.2.3