merge method

void merge(
  1. ShellEnvironmentVars other
)

the other object takes precedence, vars are added

Implementation

void merge(ShellEnvironmentVars other) {
  addAll(other);
}