azdataToolOld -> azdataTool (#16517)

This commit is contained in:
Charles Gagnon
2021-08-02 10:28:46 -07:00
committed by GitHub
parent 91676afd0d
commit 3af2b4a13d
4 changed files with 10 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ import { DockerTool } from './tools/dockerTool';
import { AzCliTool } from './tools/azCliTool';
import { KubeCtlTool } from './tools/kubeCtlTool';
import { IPlatformService } from './platformService';
import { AzdataToolOld } from './tools/azdataToolOld';
import { AzdataTool } from './tools/azdataTool';
export interface IToolsService {
getToolByName(toolName: string): ITool | undefined;
@@ -23,7 +23,7 @@ export class ToolsService implements IToolsService {
[
new DockerTool(this._platformService),
new AzCliTool(this._platformService),
new AzdataToolOld(this._platformService),
new AzdataTool(this._platformService),
new KubeCtlTool(this._platformService)
].map<[string, ITool]>((tool: ITool) => [tool.name, tool])
);