Expose the environment map directly, to make map modifications cleaner

This commit is contained in:
Robinson 2021-08-28 23:30:44 -06:00
parent 475ef24268
commit 12f4c6ef4d
1 changed files with 1 additions and 12 deletions

View File

@ -63,7 +63,6 @@ import java.util.concurrent.TimeoutException
*
*
*
*
* The default configuration for executing a process is following:
*
*
@ -167,7 +166,7 @@ open class Executor {
/**
* Environment variables which are added (removed in case of `null` values) to the process being started.
*/
private val environment: MutableMap<String, String?> = LinkedHashMap()
val environment: MutableMap<String, String?> = LinkedHashMap()
/**
@ -440,16 +439,6 @@ open class Executor {
return this
}
/**
* Returns this process executor's additional environment variables.
* The returned value is not a copy.
*
* @return this process executor's environment variables (not `null`).
*/
fun getEnvironment(): Map<String, String?> {
return environment
}
/**
* Adds additional environment variables for the process being executed.
*