Skip to content

Commit

Permalink
Remove unused return value
Browse files Browse the repository at this point in the history
  • Loading branch information
kjetilhau committed Oct 31, 2024
1 parent 8546911 commit 26eecbd
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Equinor.ProjectExecutionPortal.Infrastructure;

public static class InfrastructureModule
{
public static IServiceCollection AddInfrastructureModules(this IServiceCollection services, IConfiguration configuration)
public static void AddInfrastructureModules(this IServiceCollection services, IConfiguration configuration)
{
var connectionString = configuration.GetConnectionString("ProjectPortalContext");

Expand All @@ -15,7 +15,5 @@ public static IServiceCollection AddInfrastructureModules(this IServiceCollectio
b => b.MigrationsAssembly(typeof(ProjectExecutionPortalContext).Assembly.FullName)
)
);

return services;
}
}

0 comments on commit 26eecbd

Please sign in to comment.