getSystemEnvironment method

  1. @override
Map<String, String> getSystemEnvironment()
override

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();
}