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

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