Welcome to mirror list, hosted at ThFree Co, Russian Federation.

VoidReference.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc20d1e39d36da0f36b0042da2900f60fd3f292d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace LibGit2Sharp
{
    internal class VoidReference : Reference
    {
        internal VoidReference(IRepository repo, string canonicalName)
            : base(repo, canonicalName, null)
        { }

        public override DirectReference ResolveToDirectReference()
        {
            return null;
        }
    }
}