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

GitDiffExtensions.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a131d2091fc90d08a78cad141c8c0adeb0096371 (plain)
1
2
3
4
5
6
7
8
9
10
namespace LibGit2Sharp.Core
{
    internal static class GitDiffExtensions
    {
        public static bool IsBinary(this GitDiffDelta delta)
        {
            return delta.Flags.HasFlag(GitDiffFlags.GIT_DIFF_FLAG_BINARY);
        }
    }
}