We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40de694 commit f17d971Copy full SHA for f17d971
LibGit2Sharp/Core/FilePathExtensions.cs
@@ -2,14 +2,14 @@ namespace LibGit2Sharp.Core
2
{
3
internal static class FilePathExtensions
4
5
- internal static FilePath Combine(this FilePath @this, string childPath)
+ internal static FilePath Combine(this FilePath filePath, string childPath)
6
7
- return @this.IsNullOrEmpty() ? childPath : @this.Posix + "/" + childPath;
+ return filePath.IsNullOrEmpty() ? childPath : filePath.Posix + "/" + childPath;
8
}
9
10
- internal static bool IsNullOrEmpty(this FilePath @this)
+ internal static bool IsNullOrEmpty(this FilePath filePath)
11
12
- return ReferenceEquals(@this, null) || @this.Posix.Length == 0;
+ return ReferenceEquals(filePath, null) || filePath.Posix.Length == 0;
13
14
15
-}
+}
0 commit comments