Skip to content

Commit

Permalink
remove IDiskStateRegistry usage from UnrealEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeeWanderer committed Jul 15, 2024
1 parent 647f660 commit f79b871
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@ public class SmartUEInstaller : AModInstaller
{
private readonly ILogger<SmartUEInstaller> _logger;
private readonly IConnection _connection;
private readonly IDiskStateRegistry _diskStateRegistry;

public SmartUEInstaller(ILogger<SmartUEInstaller> logger, IConnection connection, IDiskStateRegistry diskStateRegistry, IServiceProvider serviceProvider) : base(serviceProvider)
public SmartUEInstaller(ILogger<SmartUEInstaller> logger, IConnection connection, IServiceProvider serviceProvider) : base(serviceProvider)
{
_logger = logger;
_connection = connection;
_diskStateRegistry = diskStateRegistry;
}

public override async ValueTask<IEnumerable<ModInstallerResult>> GetModsAsync(
Expand Down

0 comments on commit f79b871

Please sign in to comment.