Skip to content

Commit

Permalink
fix: remove redundant check
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Feb 6, 2021
1 parent 56af09d commit 708b1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let signatureHelpManager: SignatureHelpManager
export function activate() {
// Events subscribed to in atom's system can be easily cleaned up with a CompositeDisposable
subscriptions = new CompositeDisposable()
if (!signatureHelpManager) signatureHelpManager = new SignatureHelpManager()
signatureHelpManager = new SignatureHelpManager()
subscriptions.add(signatureHelpManager)
;(require("atom-package-deps") as typeof import("atom-package-deps"))
.install("atom-ide-signature-help", true)
Expand Down

0 comments on commit 708b1d2

Please sign in to comment.