mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 11:24:44 +00:00
Some redundant parentheses were fixed.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user