Skip to content

Commit

Permalink
remove duplicate return
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-livefront committed Jan 29, 2025
1 parent 9ac2bc6 commit 447a60a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/Api/Vault/Controllers/SecurityTaskController.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Bit.Api.Models.Response;
using Bit.Api.Models.Response;
using Bit.Api.Vault.Models.Request;
using Bit.Api.Vault.Models.Response;
using Bit.Core;
Expand Down Expand Up @@ -114,8 +114,5 @@ public async Task<ListResponseModel<SecurityTasksResponseModel>> BulkCreateTasks

var response = securityTasks.Select(x => new SecurityTasksResponseModel(x)).ToList();
return new ListResponseModel<SecurityTasksResponseModel>(response);

var response = securityTasks.Select(x => new SecurityTasksResponseModel(x)).ToList();
return new ListResponseModel<SecurityTasksResponseModel>(response);
}
}

0 comments on commit 447a60a

Please sign in to comment.