replace void 0 with undefined

This commit is contained in:
Rob Lourens
2018-12-28 13:15:41 -08:00
parent 0d11396538
commit ef2547d547
413 changed files with 1515 additions and 1515 deletions

View File

@@ -115,7 +115,7 @@ export class ExtHostQuickOpen implements ExtHostQuickOpenShape {
return undefined;
});
});
}).then(void 0, err => {
}).then(undefined, err => {
if (isPromiseCanceledError(err)) {
return undefined;
}
@@ -140,7 +140,7 @@ export class ExtHostQuickOpen implements ExtHostQuickOpenShape {
this._validateInput = options && options.validateInput;
return this._proxy.$input(options, typeof this._validateInput === 'function', token)
.then(void 0, err => {
.then(undefined, err => {
if (isPromiseCanceledError(err)) {
return undefined;
}