update the strings (#5904)

* update the strings

* PR comments and remove the workaround
This commit is contained in:
Alan Ren
2019-06-06 13:03:03 -07:00
committed by GitHub
parent 76a84a2cf4
commit 1150433c0a
15 changed files with 45 additions and 73 deletions

View File

@@ -4,7 +4,6 @@
*--------------------------------------------------------------------------------------------*/
'use strict';
import { ITool } from '../interfaces';
import { PythonTool } from './tools/pythonTool';
import { DockerTool } from './tools/dockerTool';
import { AzCliTool } from './tools/azCliTool';
import { MSSQLCtlTool } from './tools/mssqlCtlTool';
@@ -16,7 +15,7 @@ export interface IToolsService {
export class ToolsService implements IToolsService {
constructor() {
this.SupportedTools = [new PythonTool(), new DockerTool(), new AzCliTool(), new MSSQLCtlTool(), new KubeCtlTool()];
this.SupportedTools = [new DockerTool(), new AzCliTool(), new MSSQLCtlTool(), new KubeCtlTool()];
}
private SupportedTools: ITool[];