From 1e6aba3da06944930369fb2bc932e2a558526062 Mon Sep 17 00:00:00 2001 From: Allan Targino <13934447+allantargino@users.noreply.github.com> Date: Tue, 28 Sep 2021 12:56:47 -0300 Subject: [PATCH] Removing unused CallSiteKind items from Dependency Injection (#59687) Removing Scope, Transient and Singleton from enum CallSiteKind. Their CallSites were removed by 8e8650f9 --- .../src/ServiceLookup/CallSiteKind.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceLookup/CallSiteKind.cs b/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceLookup/CallSiteKind.cs index 112e9af..d953cd8 100644 --- a/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceLookup/CallSiteKind.cs +++ b/src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceLookup/CallSiteKind.cs @@ -14,11 +14,5 @@ namespace Microsoft.Extensions.DependencyInjection.ServiceLookup IEnumerable, ServiceProvider, - - Scope, - - Transient, - - Singleton } } -- 2.7.4