getSystemEnvironment method
Returns the environment variables of the underlying OS.
Keys and values are returned as String
-String
pairs.
Implementation
@override
Map<String, String> getSystemEnvironment() {
if (suppressGetenvAccess()) {
return {};
}
return System.getEnv();
}