Skip to content

Commit

Permalink
useUnixStylePathsOnly should be required in overloaded method.
Browse files Browse the repository at this point in the history
  • Loading branch information
saibulusu committed Mar 7, 2025
1 parent 0545a0f commit 2d13de3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ public string StandardizePath(string path)
/// <param name="path">The path to standardize.</param>
/// <param name="useUnixStylePathsOnly"></param>
/// <returns>A path standardized for the OS platform.</returns>
public string StandardizePath(string path, bool useUnixStylePathsOnly = false)
public string StandardizePath(string path, bool useUnixStylePathsOnly)
{
return PlatformSpecifics.StandardizePath(this.Platform, path, useUnixStylePathsOnly);
}
Expand Down

0 comments on commit 2d13de3

Please sign in to comment.