Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dfederm committed Aug 28, 2023
1 parent 2dac5e1 commit a67e9ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Build/BackEnd/BuildManager/BuildManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2501,10 +2501,10 @@ private void HandleNodeShutdown(int node, NodeShutdown shutdownPacket)
}

/// <summary>
/// Report the received <paramref name="fileAccessReport"/> to the <see cref="FileAccessManager"/>.
/// Report the received <paramref name="fileAccessReport"/> to the file access manager.
/// </summary>
/// <param name="nodeId">The id of the node from which the <paramref name="fileAccessReport"/> was received.</param>
/// <param name="fileAccessReport">The file access to report to the <see cref="FileAccessManager"/>.</param>
/// <param name="fileAccessReport">The file access report.</param>
private void HandleFileAccessReport(int nodeId, FileAccessReport fileAccessReport)
{
#if FEATURE_REPORTFILEACCESSES
Expand All @@ -2516,10 +2516,10 @@ private void HandleFileAccessReport(int nodeId, FileAccessReport fileAccessRepor
}

/// <summary>
/// Report the received <paramref name="processReport"/> to the <see cref="FileAccessManager"/>.
/// Report the received <paramref name="processReport"/> to the file access manager.
/// </summary>
/// <param name="nodeId">The id of the node from which the <paramref name="processReport"/> was received.</param>
/// <param name="processReport">The process data to report to the <see cref="FileAccessManager"/>.</param>
/// <param name="processReport">The process data report.</param>
private void HandleProcessReport(int nodeId, ProcessReport processReport)
{
#if FEATURE_REPORTFILEACCESSES
Expand Down

0 comments on commit a67e9ac

Please sign in to comment.