Remove explicit assignment

This breaks TS's type inference. Required for TS 4.3
This commit is contained in:
Matt Bierner 2021-03-29 13:53:25 -07:00
parent 755424b11f
commit 47256436d8

View file

@ -33,7 +33,7 @@ suite('File Service', () => {
capabilityChanges.push(e);
});
let registrationDisposable: IDisposable | undefined = undefined;
let registrationDisposable: IDisposable | undefined;
let callCount = 0;
service.onWillActivateFileSystemProvider(e => {
callCount++;