genie-common/src/main/java/com/netflix/genie/common/dto/Job.java [259:269]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public Builder withCommandArgs(@Nullable final List<String> commandArgs) {
            if (commandArgs != null) {
                this.bCommandArgs = StringUtils.join(commandArgs, StringUtils.SPACE);
                if (StringUtils.isBlank(this.bCommandArgs)) {
                    this.bCommandArgs = null;
                }
            } else {
                this.bCommandArgs = null;
            }
            return this;
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



genie-common/src/main/java/com/netflix/genie/common/dto/JobRequest.java [337:347]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public Builder withCommandArgs(@Nullable final List<String> commandArgs) {
            if (commandArgs != null) {
                this.bCommandArgs = StringUtils.join(commandArgs, StringUtils.SPACE);
                if (StringUtils.isBlank(this.bCommandArgs)) {
                    this.bCommandArgs = null;
                }
            } else {
                this.bCommandArgs = null;
            }
            return this;
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



