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:
parent
c88ac35c17
commit
0fa15992cf
1 changed files with 4 additions and 0 deletions
|
@ -147,6 +147,10 @@ public final class SystemProperties extends Properties {
|
||||||
return props.elements();
|
return props.elements();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String toString () {
|
||||||
|
return props.toString ();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue