(name: string)
| 565 | } |
| 566 | |
| 567 | public async deleteProfile(name: string): Promise<void> { |
| 568 | const entry = this.getProfileEntry(name) |
| 569 | |
| 570 | if (!entry) { |
| 571 | throw new Error(`Profile with name "${name}" does not exist`) |
| 572 | } |
| 573 | |
| 574 | await this.sidebarProvider.deleteProviderProfile(entry) |
| 575 | } |
| 576 | |
| 577 | public getActiveProfile(): string | undefined { |
| 578 | return this.getConfiguration().currentApiConfigName |
nothing calls this directly
no test coverage detected