Skip to content

Commit 8a8f01f

Browse files
authored
Remove whitespace (leave the newline).
1 parent b6422e2 commit 8a8f01f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Host/Startup/SecurityRequirementsOperationFilter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ public void Apply(Operation operation, OperationFilterContext context)
2828
if (controllerAbpAuthorizeAttrs.Any() || actionAbpAuthorizeAttrs.Any())
2929
{
3030
operation.Responses.Add("401", new Response { Description = "Unauthorized" });
31-
31+
3232
var permissions = controllerAbpAuthorizeAttrs.Union(actionAbpAuthorizeAttrs)
3333
.SelectMany(p => p.Permissions)
3434
.Distinct();
35-
35+
3636
if (permissions.Any())
3737
{
3838
operation.Responses.Add("403", new Response { Description = "Forbidden" });
3939
}
40-
40+
4141
operation.Security = new List<IDictionary<string, IEnumerable<string>>>
4242
{
4343
new Dictionary<string, IEnumerable<string>>

0 commit comments

Comments
 (0)