Removing unused CallSiteKind items from Dependency Injection (#59687)
authorAllan Targino <13934447+allantargino@users.noreply.github.com>
Tue, 28 Sep 2021 15:56:47 +0000 (12:56 -0300)
committerGitHub <noreply@github.com>
Tue, 28 Sep 2021 15:56:47 +0000 (10:56 -0500)
Removing Scope, Transient and Singleton from enum CallSiteKind.
Their CallSites were removed by 8e8650f9

src/libraries/Microsoft.Extensions.DependencyInjection/src/ServiceLookup/CallSiteKind.cs

index 112e9af..d953cd8 100644 (file)
@@ -14,11 +14,5 @@ namespace Microsoft.Extensions.DependencyInjection.ServiceLookup
         IEnumerable,
 
         ServiceProvider,
-
-        Scope,
-
-        Transient,
-
-        Singleton
     }
 }