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

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