forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChanges.cs
More file actions
52 lines (45 loc) · 1.37 KB
/
Changes.cs
File metadata and controls
52 lines (45 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System.Diagnostics;
using System.Globalization;
using System.Text;
namespace LibGit2Sharp
{
/// <summary>
/// Base class for changes.
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public abstract class Changes
{
private readonly StringBuilder patchBuilder = new StringBuilder();
internal void AppendToPatch(string patch)
{
patchBuilder.Append(patch);
}
/// <summary>
/// The number of lines added.
/// </summary>
public virtual int LinesAdded { get; internal set; }
/// <summary>
/// The number of lines deleted.
/// </summary>
public virtual int LinesDeleted { get; internal set; }
/// <summary>
/// The patch corresponding to these changes.
/// </summary>
public virtual string Patch
{
get { return patchBuilder.ToString(); }
}
/// <summary>
/// Determines if at least one side of the comparison holds binary content.
/// </summary>
public virtual bool IsBinaryComparison { get; protected set; }
private string DebuggerDisplay
{
get
{
return string.Format(CultureInfo.InvariantCulture,
@"{{+{0}, -{1}}}", LinesAdded, LinesDeleted);
}
}
}
}