Remove obsolete TestPair.Pair (#19496)

This commit is contained in:
Visne
2023-08-25 02:56:51 +02:00
committed by GitHub
parent e1639b05b5
commit 3c667b6f7e
101 changed files with 717 additions and 727 deletions

View File

@@ -277,7 +277,7 @@ public static partial class PoolManager
}
pair.ValidateSettings(poolSettings);
var poolRetrieveTime = poolRetrieveTimeWatch.Elapsed;
await testOut.WriteLineAsync(
$"{nameof(GetServerClientPair)}: Retrieving pair {pair.Id} from pool took {poolRetrieveTime.TotalMilliseconds} ms");
@@ -298,7 +298,7 @@ public static partial class PoolManager
{
if (Pairs[pair])
continue;
if (!pair.Settings.CanFastRecycle(poolSettings))
{
fallback = pair;
@@ -320,15 +320,14 @@ public static partial class PoolManager
{
var x = 2;
}
return fallback;
}
}
/// <summary>
/// Used by PairTracker after checking the server/client pair, Don't use this.
/// Used by TestPair after checking the server/client pair, Don't use this.
/// </summary>
/// <param name="pair"></param>
public static void NoCheckReturn(TestPair pair)
{
lock (PairLock)
@@ -384,12 +383,12 @@ we are just going to end this here to save a lot of time. This is the exception
/// <summary>
/// Creates a map, a grid, and a tile, and gives back references to them.
/// </summary>
/// <param name="pairTracker">A pairTracker</param>
/// <param name="pair">A pair</param>
/// <returns>A TestMapData</returns>
[Obsolete("use TestPair.CreateMap")]
public static async Task<TestMapData> CreateTestMap(TestPair pairTracker)
public static async Task<TestMapData> CreateTestMap(TestPair pair)
{
return await pairTracker.CreateTestMap();
return await pair.CreateTestMap();
}
/// <summary>
@@ -406,7 +405,7 @@ we are just going to end this here to save a lot of time. This is the exception
await pair.Client.WaitRunTicks(1);
}
}
/// <summary>
/// Runs a server, or a client until a condition is true
/// </summary>
@@ -492,4 +491,4 @@ we are just going to end this here to save a lot of time. This is the exception
_initialized = true;
DiscoverTestPrototypes(assembly);
}
}
}