> + this.openStdin = openStdin;
> + return this;
> + }
> +
> + public Builder stdinOnce(boolean stdinOnce) {
> + this.stdinOnce = stdinOnce;
> + return this;
> + }
> +
> + public Builder env(List<String> env) {
> + this.env = env;
> + return this;
> + }
> +
> + public Builder cmd(List<String> cmd) {
> + this.cmd = ImmutableList.builder();
Why overriding it here? If you don't really want to add, don't initialize the
variable when declaring it and use `copyOf` here.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r10839864