mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-27 09:35:37 -05:00
Even more strictness (#11879)
* add more to strict nulls * maintain error handling properly * fix lint * the rest of workbench/services * fix compile
This commit is contained in:
@@ -29,7 +29,7 @@ export function providerIterator(service: IInstantiationService): Provider[] {
|
||||
function createUniqueSelector(selector: string): string {
|
||||
let num: number;
|
||||
if (selectorCounter.has(selector)) {
|
||||
num = selectorCounter.get(selector);
|
||||
num = selectorCounter.get(selector)!;
|
||||
} else {
|
||||
num = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user