TestingParallelManager is apparently used by content

This commit is contained in:
PJB3005
2025-12-16 05:25:41 +01:00
parent 788e9386fd
commit b4615b9c7a

View File

@@ -1,11 +1,12 @@
using Robust.Shared.Threading;
namespace Robust.Shared.Testing;
// ReSharper disable once CheckNamespace
namespace Robust.UnitTesting;
/// <summary>
/// Only allows 1 parallel process for testing purposes.
/// </summary>j
internal sealed class TestingParallelManager : IParallelManagerInternal
public sealed class TestingParallelManager : IParallelManagerInternal
{
public event Action? ParallelCountChanged { add { } remove { } }
public int ParallelProcessCount => 1;