Some redundant parentheses were fixed.

This commit is contained in:
aedampir@gmail.com
2016-03-25 13:19:49 +07:00
parent af01406288
commit c99d0d68e3
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ namespace Octokit
{
get
{
var name = (Commit != null && Commit.Author != null) ? Commit.Author.Name : "";
var name = Commit != null && Commit.Author != null ? Commit.Author.Name : "";
return string.Format(CultureInfo.InvariantCulture, "Sha: {0} Author: {1}", Sha, name);
}
}