log("Error: no properties found !!!");
}
// Register the _unused_ properties as system properties
if( properties != null ) {
Enumeration enumeration = properties.propertyNames();
while (enumeration.hasMoreElements()) {
String name = (String) enumeration.nextElement();
String value = properties.getProperty(name);
if( "security.preload".equals( name )) continue;
if( "package.access".equals( name )) continue;