muffin v6.35 with old pdb
This commit is contained in:
parent
ac85599236
commit
b5d2cc6708
31 changed files with 958 additions and 958 deletions
|
|
@ -233,17 +233,17 @@ internal sealed class GatheringController : MiniTaskController<GatheringControll
|
|||
|
||||
public override IList<string> GetRemainingTaskNames()
|
||||
{
|
||||
ITask task = _taskQueue.CurrentTaskExecutor?.CurrentTask;
|
||||
if (task != null)
|
||||
ITask oldSequence = _taskQueue.CurrentTaskExecutor?.CurrentTask;
|
||||
if (oldSequence != null)
|
||||
{
|
||||
string text = task.ToString() ?? "?";
|
||||
string newSequence = oldSequence.ToString() ?? "?";
|
||||
IList<string> remainingTaskNames = base.GetRemainingTaskNames();
|
||||
int num = 1 + remainingTaskNames.Count;
|
||||
List<string> list = new List<string>(num);
|
||||
CollectionsMarshal.SetCount(list, num);
|
||||
Span<string> span = CollectionsMarshal.AsSpan(list);
|
||||
int num2 = 0;
|
||||
span[num2] = text;
|
||||
span[num2] = newSequence;
|
||||
num2++;
|
||||
{
|
||||
foreach (string item in remainingTaskNames)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue