Implement override toString method to do what you'd expect it to

do (generate a string representation of the properties).
This commit is contained in:
hns 2002-03-26 12:10:16 +00:00
parent c88ac35c17
commit 0fa15992cf

View file

@ -147,6 +147,10 @@ public final class SystemProperties extends Properties {
return props.elements();
}
public String toString () {
return props.toString ();
}
}