Skip to content

Commit 7d259a9

Browse files
Fix dodgy imports
1 parent 3cae3cc commit 7d259a9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

extensions/ql-vscode/src/databases/local-databases/database-contents.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { pathExists, remove } from "fs-extra";
2-
import { join } from "path/posix";
2+
import { join } from "path";
33
import type { Uri } from "vscode";
44
import { zip } from "zip-a-folder";
55

extensions/ql-vscode/src/databases/local-databases/database-manager.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ import { DatabaseResolver } from "./database-resolver";
4343
import { telemetryListener } from "../../common/vscode/telemetry";
4444
import type { LanguageContextStore } from "../../language-context-store";
4545
import type { DatabaseOrigin } from "./database-origin";
46-
import {} from "../database-fetcher";
4746
import { ensureZippedSourceLocation } from "./database-contents";
4847

4948
/**

0 commit comments

Comments
 (0)