Example #1
0
        public Commit(CommitValue value, Commit parent)
        {
            this.value = value;

            if (parent != null)
            {
                this.AddParent(parent);
            }
        }
Example #2
0
        public Commit(CommitValue value, Commit parent)
        {
            this.value = value;

            if (parent != null)
            {
                this.AddParent(parent);
            }
        }
Example #3
0
 public Commit(CommitValue value) : this(value, null)
 {
 }
Example #4
0
 public Commit(CommitValue value)
     : this(value, null)
 {
 }