Skip to content

Commit cd57c8e

Browse files
committed
fix
1 parent bcaaa4b commit cd57c8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Middleware/OutputCaching/src/OutputCacheServiceCollectionExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ public static IServiceCollection AddOutputCache(this IServiceCollection services
2525
ArgumentNullException.ThrowIfNull(services);
2626

2727
services.AddTransient<IConfigureOptions<OutputCacheOptions>, OutputCacheOptionsSetup>();
28-
28+
2929
services.TryAddTransient<ObjectPoolProvider, DefaultObjectPoolProvider>();
3030
services.TryAddTransient<IOutputCachePolicyProvider, DefaultOutputCachePolicyProvider>();
31-
31+
3232
services.TryAddSingleton<IOutputCacheStore>(sp =>
3333
{
3434
var outputCacheOptions = sp.GetRequiredService<IOptions<OutputCacheOptions>>();

0 commit comments

Comments
 (0)