Skip to content

Commit

Permalink
CODE RUB: Remove unused namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
LBoullosa committed Jun 3, 2024
1 parent cac47fb commit e71db04
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// ----------------------------------------------------------------------------------

using System.Reflection;
using System.Threading.Tasks;
using FluentAssertions;
using Moq;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

using FluentAssertions;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Moq;

namespace STX.SPAL.Core.Tests.Unit.Services.Foundations.ServicesCollections
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ public IServiceCollection RegisterServiceDescriptor(
ServiceDescriptor serviceDescriptor =
new ServiceDescriptor(spalInterfaceType, implementationType, serviceLifetime);

IServiceCollection serviceCollection = dependencyInjectionBroker.RegisterServiceDescriptor(serviceDescriptor);
return serviceCollection;
return dependencyInjectionBroker.RegisterServiceDescriptor(serviceDescriptor);
}
}
}

0 comments on commit e71db04

Please sign in to comment.