GitSharp.Core.WorkDirCheckout.CheckoutTwoTrees C# (CSharp) Method

CheckoutTwoTrees() private method

private CheckoutTwoTrees ( ) : void
return void
        private void CheckoutTwoTrees()
        {
            foreach (string path in Removed)
            {
                _index.remove(_root, new FileInfo(Path.Combine(_root.FullName, path)));
            }

            foreach (KeyValuePair<string, ObjectId> entry in _updated)
            {
                GitIndex.Entry newEntry = _index.addEntry(_merge.FindBlobMember(entry.Key));
                _index.checkoutEntry(_root, newEntry);
            }
        }