Merge comments default to an empty string as they are optional.

This commit is contained in:
Josh Sullivan
2013-11-12 00:19:56 -05:00
committed by Brendan Forster
parent fddae25b6f
commit 6c7f75656b
+1 -1
View File
@@ -7,7 +7,7 @@ namespace Octokit
/// </summary>
public class MergePullRequest
{
public MergePullRequest(string message)
public MergePullRequest(string message = "")
{
Ensure.ArgumentNotNull(message, "message");