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

NoteSafeHandle.cs « Handles « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22e8fcffbc6b9290aafd046f7641d90fc7b3c07c (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace LibGit2Sharp.Core.Handles
{
    internal class NoteSafeHandle : SafeHandleBase
    {
        protected override bool ReleaseHandle()
        {
            NativeMethods.git_note_free(handle);
            return true;
        }
    }
}