Skip to content

Commit e53559f

Browse files
committed
Remove comment
1 parent 5a8f940 commit e53559f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Arch/Core/Jobs/World.Jobs.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,6 @@ public JobHandle AdvancedInlineParallelChunkQuery<T>(in QueryDescription queryDe
146146
var parentHandle = SharedJobScheduler.Schedule();
147147
foreach (var archetype in query.GetArchetypeIterator())
148148
{
149-
// We dont actually care about partitioning here anyways as we run the job on each chunk individually,
150-
// so might as well just remove it, todo
151149
for (int i = 0; i < archetype.Chunks.Count; i++)
152150
{
153151
ref var chunk = ref archetype.Chunks[i];
@@ -158,8 +156,6 @@ public JobHandle AdvancedInlineParallelChunkQuery<T>(in QueryDescription queryDe
158156
job.CheckAndSplit();
159157
SharedJobScheduler.Flush(job.GetHandle());
160158
}
161-
162-
// Schedule, flush, wait, return.
163159
}
164160

165161
SharedJobScheduler.Flush(parentHandle);

0 commit comments

Comments
 (0)