From fd2a3599bcc8fcc4c2ea14de7e5ca664ed09f3ba Mon Sep 17 00:00:00 2001 From: Hariharan Subramanian <105889062+hsubramanianaks@users.noreply.github.com> Date: Fri, 6 Oct 2023 13:03:25 -0700 Subject: [PATCH] Remove the unsed method. (#255) --- src/panels/CreateClusterPanel.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/panels/CreateClusterPanel.ts b/src/panels/CreateClusterPanel.ts index 84b222741..c2fdf3a04 100644 --- a/src/panels/CreateClusterPanel.ts +++ b/src/panels/CreateClusterPanel.ts @@ -43,10 +43,6 @@ export class CreateClusterDataProvider implements PanelDataProvider<"createClust createClusterRequest: args => this._handleCreateClusterRequest(args.isNewResourceGroup, args.resourceGroup, args.location, args.name, webview) }; } - _handleCreateClusterSuccess(name: any) { - window.showInformationMessage(`Successfully created AKS cluster ${name}.`); - return; - } private async _handleGetLocationsRequest(webview: MessageSink) { const provider = await this.resourceManagementClient.providers.get("Microsoft.ContainerService");