Skip to content

Commit

Permalink
Added inline documentation to the AddDirectoriesToList() method of th…
Browse files Browse the repository at this point in the history
…e FrmRmWrk class.
  • Loading branch information
xvitaly committed Sep 1, 2024
1 parent 546b96a commit ab314cb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/srcrepair/FrmRmWrk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ private List<string> AddFilesToList(string CleanDir)
return Result;
}

/// <summary>
/// Finds subdirectories in the specified directory, recursively tries
/// to find files in it and add them to the list.
/// </summary>
/// <param name="CleanDir">Directory for cleanup.</param>
/// <returns>The list of files for cleanup.</returns>
private List<string> AddDirectoriesToList(string CleanDir)
{
List<string> Result = new List<string>();
Expand Down

0 comments on commit ab314cb

Please sign in to comment.