From f17d9717255f99fc979d3bb46d98f98a500c757d Mon Sep 17 00:00:00 2001 From: ThomasBarnekow Date: Thu, 16 Apr 2015 00:33:14 +0200 Subject: [PATCH] Beautify FilePathExtensions Replace formal parameter 'FilePath @this' with 'FilePath filePath'. --- LibGit2Sharp/Core/FilePathExtensions.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/LibGit2Sharp/Core/FilePathExtensions.cs b/LibGit2Sharp/Core/FilePathExtensions.cs index 930f38ed9..66118492c 100644 --- a/LibGit2Sharp/Core/FilePathExtensions.cs +++ b/LibGit2Sharp/Core/FilePathExtensions.cs @@ -2,14 +2,14 @@ namespace LibGit2Sharp.Core { internal static class FilePathExtensions { - internal static FilePath Combine(this FilePath @this, string childPath) + internal static FilePath Combine(this FilePath filePath, string childPath) { - return @this.IsNullOrEmpty() ? childPath : @this.Posix + "/" + childPath; + return filePath.IsNullOrEmpty() ? childPath : filePath.Posix + "/" + childPath; } - internal static bool IsNullOrEmpty(this FilePath @this) + internal static bool IsNullOrEmpty(this FilePath filePath) { - return ReferenceEquals(@this, null) || @this.Posix.Length == 0; + return ReferenceEquals(filePath, null) || filePath.Posix.Length == 0; } } -} \ No newline at end of file +}