Add comment for removing obsolete extensions first

This commit is contained in:
Sandeep Somavarapu 2017-11-22 18:07:48 +01:00
parent c110a7c32e
commit e07aedcad3

View file

@ -573,6 +573,7 @@ export class ExtensionManagementService implements IExtensionManagementService {
removeDeprecatedExtensions(): TPromise<any> {
return TPromise.join([
// Remove obsolte extensions first to avoid removing installed older extension. See #38609.
this.removeObsoleteExtensions(),
this.removeOutdatedExtensions()
]);