GitCommands.CommitInformation.CommitInformation C# (CSharp) Method

CommitInformation() private method

Private constructor
private CommitInformation ( string header, string body ) : System
header string
body string
return System
        private CommitInformation(string header, string body)
        {
            Header = header;
            Body = body;
        }