From f09e466624649662007f4516fddcd5699f79fa70 Mon Sep 17 00:00:00 2001 From: Arvind Shyamsundar <16342666+arvindshmicrosoft@users.noreply.github.com> Date: Mon, 30 Mar 2026 21:45:22 -0700 Subject: [PATCH] Potential fix for code scanning alert no. 72: Missing a summary in documentation comment Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- Engine/StackResolver.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Engine/StackResolver.cs b/Engine/StackResolver.cs index 794944d..54b95a7 100644 --- a/Engine/StackResolver.cs +++ b/Engine/StackResolver.cs @@ -33,7 +33,9 @@ public Task, List>> GetDistinctXELFieldsAsync(string[ return XELHelper.GetDistinctXELActionsFieldsAsync(xelFiles, eventsToSample); } - /// Public method which to help import XEL files + /// + /// Public method which to help import XEL files. + /// public async Task> ExtractFromXELAsync(string[] xelFiles, bool groupEvents, List relevantFields, CancellationTokenSource cts) { return await XELHelper.ExtractFromXELAsync(this, xelFiles, groupEvents, relevantFields, cts); }