From bce1b3dd87daf976a55df2b131e10969a722df51 Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Sat, 28 Apr 2018 00:21:34 -0400 Subject: [PATCH] Remove Deprecated Method Call --- src/xpath/commands/evaluateXPath.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xpath/commands/evaluateXPath.ts b/src/xpath/commands/evaluateXPath.ts index fb9ff19..8f78a11 100644 --- a/src/xpath/commands/evaluateXPath.ts +++ b/src/xpath/commands/evaluateXPath.ts @@ -83,7 +83,7 @@ export async function evaluateXPath(editor: TextEditor, edit: TextEditorEdit): P outputChannel.appendLine(`[Result]: ${evalResult.result}`); } - outputChannel.show(ViewColumn.Three); + outputChannel.show(false); if (persistQueries) { const historicQuery = new HistoricQuery(editor.document.uri.toString(), query);