Skip to content

Commit

Permalink
Fix method name
Browse files Browse the repository at this point in the history
Forgot to save the file
  • Loading branch information
DSPaul committed Feb 1, 2025
1 parent d98a667 commit 5d1fa10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/IOService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ public static (string, string) GetDifferingRoot(in string path1, in string path2
/// </summary>
/// <param name="path"></param>
/// <returns></returns>
public static IEnumerable<string> GetFilesInFolder(string path)
public static IEnumerable<string> TryGetFilesInFolder(string path)
{
IEnumerable<string> files = Enumerable.Empty<string>();
if (Directory.Exists(path))
Expand Down

0 comments on commit 5d1fa10

Please sign in to comment.