Update src/common/services/InstantiationService.ts

This commit is contained in:
coderaiser
2022-09-15 22:52:50 +03:00
committed by GitHub
parent 25eb7d6472
commit bbff3e8396
+1 -1
View File
@@ -30,7 +30,7 @@ export class ServiceCollection {
public forEach(callback: (id: IServiceIdentifier<any>, instance: any) => any): void {
for (const [key, value] of this._entries.entries()) {
callback(key, value);
callback(key, value);
}
}