mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
chore - Remove unnecessary type assertion in ResourceMap callback (#269984)
This commit is contained in:
@@ -121,8 +121,7 @@ export class ResourceMap<T> implements Map<URI, T> {
|
||||
clb = clb.bind(thisArg);
|
||||
}
|
||||
for (const [_, entry] of this.map) {
|
||||
// eslint-disable-next-line local/code-no-any-casts
|
||||
clb(entry.value, entry.uri, <any>this);
|
||||
clb(entry.value, entry.uri, this);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user