Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 40de694 + f17d971 commit 61adafdCopy full SHA for 61adafd
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