Updated class param formatting

This commit is contained in:
Chomp
2025-08-11 21:08:55 +01:00
parent f66a982f09
commit 4a081a7ac3
23 changed files with 355 additions and 358 deletions
+2 -2
View File
@@ -6,9 +6,9 @@ using SPTarkov.Server.Core.Utils.Cloners;
namespace UnitTests.Mock;
[Injectable(TypeOverride = typeof(RandomUtil))]
public class MockRandomUtil(ISptLogger<RandomUtil> _logger, ICloner _cloner) : RandomUtil(_logger, _cloner)
public class MockRandomUtil(ISptLogger<RandomUtil> logger, ICloner cloner) : RandomUtil(logger, cloner)
{
public override int GetInt(int min, int max = Int32.MaxValue, bool exclusive = false)
public override int GetInt(int min, int max = int.MaxValue, bool exclusive = false)
{
return min;
}