Remove extraneous argument from setOptions call sites in OptionsDefaulter

This commit is contained in:
Mohsen Azimi 2018-03-26 22:57:25 -07:00 committed by GitHub
parent fc2feaf6d7
commit 165a2edf16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -43,8 +43,7 @@ class OptionsDefaulter {
setProperty(
options,
name,
this.defaults[name].call(this, getProperty(options, name), options),
options
this.defaults[name].call(this, getProperty(options, name), options)
);
break;
case "make":
@ -52,8 +51,7 @@ class OptionsDefaulter {
setProperty(
options,
name,
this.defaults[name].call(this, options),
options
this.defaults[name].call(this, options)
);
break;
case "append": {