コード例 #1
0
        public Commit(CommitValue value, Commit parent)
        {
            this.value = value;

            if (parent != null)
            {
                this.AddParent(parent);
            }
        }
コード例 #2
0
ファイル: Commit.cs プロジェクト: heupel/conceptual-git
        public Commit(CommitValue value, Commit parent)
        {
            this.value = value;

            if (parent != null)
            {
                this.AddParent(parent);
            }
        }
コード例 #3
0
 public Commit(CommitValue value) : this(value, null)
 {
 }
コード例 #4
0
ファイル: Commit.cs プロジェクト: heupel/conceptual-git
 public Commit(CommitValue value)
     : this(value, null)
 {
 }