diff --git a/src/helpers/utils.ts b/src/helpers/utils.ts index 30f30d3ceb..aa8d95a489 100644 --- a/src/helpers/utils.ts +++ b/src/helpers/utils.ts @@ -6,7 +6,6 @@ import { BuildResult } from "vso-node-api/interfaces/BuildInterfaces"; import { Strings } from "./strings"; -import * as vscode from "vscode"; import * as fs from "fs"; import * as path from "path"; @@ -154,13 +153,6 @@ export class Utils { //Use open for Windows and Mac, opener for Linux public static OpenUrl(url: string) : void { - // Use the built in VS Code openExternal function if present. - if ((vscode.env).openExternal) { - (vscode.env).openExternal(vscode.Uri.parse(url)); - return; - } - - // Fallback to other node modules for old versions of VS Code switch (process.platform) { case "win32": case "darwin":