Skip to content

Commit 6a10062

Browse files
committed
Remove comments.
1 parent 7e7f1fe commit 6a10062

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Components/Endpoints/src/Rendering/EndpointHtmlRenderer.Prerendering.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,16 +184,14 @@ public void HandleNonStreamingTasks()
184184
{
185185
if (NonStreamingPendingTasksCompletion == null)
186186
{
187-
// Iterate over the tasks and handle their exceptions
188187
foreach (var task in _nonStreamingPendingTasks)
189188
{
190-
_ = GetErrorHandledTask(task); // Fire-and-forget with exception handling
189+
_ = GetErrorHandledTask(task);
191190
}
192191

193192
// Clear the pending tasks since we are handling them
194193
_nonStreamingPendingTasks.Clear();
195194

196-
// Mark the tasks as completed
197195
NonStreamingPendingTasksCompletion = Task.CompletedTask;
198196
}
199197
}

0 commit comments

Comments
 (0)