Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change helper method to internal
Switched method from a private protection level to an internal protection level. Also removed trailing whitespace.
  • Loading branch information
steveberdy authored Jul 9, 2021
commit ce6bfd26b32b71c2460088a79c3b2cdc7360e14a
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static string GetFullPath(string path)
// unpredictable results.
if (path.Contains('\0'))
throw new ArgumentException(SR.Argument_InvalidPathChars, nameof(path));

return GetFullQualifiedPath(path);
}

Expand Down Expand Up @@ -122,8 +122,8 @@ public static string GetFullPath(string path, string basePath)
? PathInternal.RemoveRelativeSegments(combinedPath, PathInternal.GetRootLength(combinedPath.AsSpan()))
: GetFullQualifiedPath(combinedPath);
}
private static string GetFullQualifiedPath(string path)

internal static string GetFullQualifiedPath(string path)
{
if (PathInternal.IsExtended(path.AsSpan()))
{
Expand Down