public Commit(CommitValue value, Commit parent) { this.value = value; if (parent != null) { this.AddParent(parent); } }
public Commit(CommitValue value) : this(value, null) { }