Skip to content

Commit 708b1d2

Browse files
committed
fix: remove redundant check
1 parent 56af09d commit 708b1d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let signatureHelpManager: SignatureHelpManager
1111
export function activate() {
1212
// Events subscribed to in atom's system can be easily cleaned up with a CompositeDisposable
1313
subscriptions = new CompositeDisposable()
14-
if (!signatureHelpManager) signatureHelpManager = new SignatureHelpManager()
14+
signatureHelpManager = new SignatureHelpManager()
1515
subscriptions.add(signatureHelpManager)
1616
;(require("atom-package-deps") as typeof import("atom-package-deps"))
1717
.install("atom-ide-signature-help", true)

0 commit comments

Comments
 (0)