From 0fa15992cfe63c285d947a27f45c602e67e56146 Mon Sep 17 00:00:00 2001 From: hns Date: Tue, 26 Mar 2002 12:10:16 +0000 Subject: [PATCH] Implement override toString method to do what you'd expect it to do (generate a string representation of the properties). --- src/helma/util/SystemProperties.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/helma/util/SystemProperties.java b/src/helma/util/SystemProperties.java index 7e096fdc..a3cf40b7 100644 --- a/src/helma/util/SystemProperties.java +++ b/src/helma/util/SystemProperties.java @@ -147,6 +147,10 @@ public final class SystemProperties extends Properties { return props.elements(); } + public String toString () { + return props.toString (); + } + }