Skip to content

Commit b9e9858

Browse files
author
Tom Fiedler
committed
removed unnecessary using
1 parent 57a66fd commit b9e9858

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Swashbuckle.AspNetCore.SwaggerGen/DependencyInjection/ConfigureSwaggerGeneratorOptions.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using Microsoft.AspNetCore.Hosting;
5-
using Microsoft.AspNetCore.Mvc.Filters;
65
using Microsoft.Extensions.DependencyInjection;
76
using Microsoft.Extensions.Options;
87
using Microsoft.OpenApi.Models;
@@ -35,7 +34,7 @@ public void Configure(SwaggerGeneratorOptions options)
3534

3635
// Create and add any filters that were specified through the FilterDescriptor lists ...
3736

38-
foreach(var filterDescriptor in _swaggerGenOptions.ParameterFilterDescriptors)
37+
foreach (var filterDescriptor in _swaggerGenOptions.ParameterFilterDescriptors)
3938
{
4039
if (filterDescriptor.Type.IsAssignableTo(typeof(IParameterFilter)))
4140
{

0 commit comments

Comments
 (0)