From 2dd129d9bd0cb873d1519eaeb0c037a175d06fb3 Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Fri, 14 Jan 2022 17:52:06 +0100 Subject: [PATCH] Remove unused references --- src/helpers/ArticleHelper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helpers/ArticleHelper.ts b/src/helpers/ArticleHelper.ts index 4a76af92..f8de7be8 100644 --- a/src/helpers/ArticleHelper.ts +++ b/src/helpers/ArticleHelper.ts @@ -10,13 +10,13 @@ import { Extension, Settings } from '.'; import { format, parse } from 'date-fns'; import { Notifications } from './Notifications'; import { Article } from '../commands'; -import { basename, join } from 'path'; +import { join } from 'path'; import { EditorHelper } from '@estruyf/vscode'; import sanitize from '../helpers/Sanitize'; import { existsSync, mkdirSync } from 'fs'; import { ContentType } from '../models'; import { DateHelper } from './DateHelper'; -import { Diagnostic, DiagnosticSeverity, Position, window, Range } from 'vscode'; +import { DiagnosticSeverity, Position, window, Range } from 'vscode'; export class ArticleHelper { private static notifiedFiles: string[] = [];