From 233f1dd2a850a7c8c6947c88c1ce06f7a945befd Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Mon, 30 Dec 2019 23:12:33 +0100 Subject: Privatize highlighting --- editors/code/src/server.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'editors/code/src/server.ts') diff --git a/editors/code/src/server.ts b/editors/code/src/server.ts index 10dc079fb..2bb21da6b 100644 --- a/editors/code/src/server.ts +++ b/editors/code/src/server.ts @@ -3,7 +3,6 @@ import * as lc from 'vscode-languageclient'; import { window, workspace } from 'vscode'; import { Config } from './config'; -import { Highlighter } from './highlighting'; function expandPathResolving(path: string) { if (path.startsWith('~/')) { @@ -13,7 +12,6 @@ function expandPathResolving(path: string) { } export class Server { - public static highlighter = new Highlighter(); public static config = new Config(); public static client: lc.LanguageClient; -- cgit v1.2.3