* Populates the sysProps Map<String,String> with all entries
* from the system properties object.
*/
void populateSysProps() {
final Properties systemProperties = System.getProperties();
final Enumeration systemPropertiesNames = systemProperties.propertyNames();
while (systemPropertiesNames.hasMoreElements()) {
try {
final String name = (String) systemPropertiesNames.nextElement();
final String value = systemProperties.getProperty(name);
sysProps.put(name, value);