Skip to content

Commit

Permalink
feat: use ProviderRegistry from atom-ide-base
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Oct 5, 2020
1 parent 70c06d6 commit 55f3004
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 37 deletions.
4 changes: 2 additions & 2 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import { CompositeDisposable } from "atom"
import { install as installPackageDependencies } from "atom-package-deps"
import { goToDefinition } from "./goToDefinition"
import createProviderRegistry from "./providerRegistry"
import { ProviderRegistry } from "atom-ide-base/commons-atom/ProviderRegistry"
import { ClickProvider } from "./clickProvider"

const providerRegistry = createProviderRegistry()
const providerRegistry = new ProviderRegistry() // <DefinitionsProvider>
const clickProvider = new ClickProvider({
providerRegistry,
})
Expand Down
35 changes: 0 additions & 35 deletions lib/providerRegistry.js

This file was deleted.

0 comments on commit 55f3004

Please sign in to comment.