Skip to content

Commit f17d971

Browse files
Beautify FilePathExtensions
Replace formal parameter 'FilePath @this' with 'FilePath filePath'.
1 parent 40de694 commit f17d971

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

LibGit2Sharp/Core/FilePathExtensions.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ namespace LibGit2Sharp.Core
22
{
33
internal static class FilePathExtensions
44
{
5-
internal static FilePath Combine(this FilePath @this, string childPath)
5+
internal static FilePath Combine(this FilePath filePath, string childPath)
66
{
7-
return @this.IsNullOrEmpty() ? childPath : @this.Posix + "/" + childPath;
7+
return filePath.IsNullOrEmpty() ? childPath : filePath.Posix + "/" + childPath;
88
}
99

10-
internal static bool IsNullOrEmpty(this FilePath @this)
10+
internal static bool IsNullOrEmpty(this FilePath filePath)
1111
{
12-
return ReferenceEquals(@this, null) || @this.Posix.Length == 0;
12+
return ReferenceEquals(filePath, null) || filePath.Posix.Length == 0;
1313
}
1414
}
15-
}
15+
}

0 commit comments

Comments
 (0)