From a26234152bda312ed84498f7f4c7ce064edad7ca Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 17 Nov 2021 12:43:51 -0500 Subject: [PATCH] Fixes import issue --- src/git/remotes/gerrit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git/remotes/gerrit.ts b/src/git/remotes/gerrit.ts index 16bfe76..32bb9ba 100644 --- a/src/git/remotes/gerrit.ts +++ b/src/git/remotes/gerrit.ts @@ -4,7 +4,7 @@ import { DynamicAutolinkReference } from '../../annotations/autolinks'; import { AutolinkReference } from '../../config'; import { GitRevision } from '../models/models'; import { Repository } from '../models/repository'; -import { RemoteProvider } from './factory'; +import { RemoteProvider } from './provider'; const fileRegex = /^\/([^/]+)\/\+(.+)$/i; const rangeRegex = /^(\d+)$/;