Simplify IExtensionService

This commit is contained in:
Alex Dima
2016-03-01 12:13:02 +01:00
parent 3d311aee43
commit a2a48e3ba8
8 changed files with 24 additions and 51 deletions

View File

@@ -435,7 +435,7 @@ class Extension<T> implements vscode.Extension<T> {
}
activate(): Thenable<T> {
return this._extensionService.activateAndGet(this.id).then(() => this.exports);
return this._extensionService.activateById(this.id).then(() => this.exports);
}
}