in src/main/java/org/ini4j/Config.java [102:116]
public static String getEnvironment(String name, String defaultValue)
{
String value;
try
{
value = System.getenv(name);
}
catch (SecurityException x)
{
value = null;
}
return (value == null) ? defaultValue : value;
}