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: b8defc8c0eec597bf7495cc5fc64622d551d4cea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace LibGit2Sharp
{
    internal class VoidReference : Reference
    {
        internal VoidReference(string canonicalName)
            : base(canonicalName, null)
        { }

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