8000 Fixed for tests · wtf3505-git/libgit2sharp@445bbbe · GitHub
[go: up one dir, main page]

Skip to content

Commit 445bbbe

Browse files
committed
Fixed for tests
1 parent 92b9e20 commit 445bbbe

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

LibGit2Sharp/ContentChanges.cs

Lines changed: 8 additions & 2 deletions
< 8000 colgroup>
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,15 @@ internal void AppendToPatch(string patch)
5555
/// </summary>
5656
public virtual int LinesDeleted { get; internal set; }
5757

58-
public List<Line> AddedLines { get; internal set; }
58+
/// <summary>
59+
/// Lis of all lines added.
60+
/// </summary>
61+
public virtual List<Line> AddedLines { get; internal set; }
5962

60-
public List<Line> DeletedLines { get; internal set; }
63+
/// <summary>
64+
/// List of all lines deleted.
65+
/// </summary>
66+
public virtual List<Line> DeletedLines { get; internal set; }
6167

6268

6369
/// <summary>

LibGit2Sharp/Core/Line.cs renamed to LibGit2Sharp/Line.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Text;
44

5-
namespace LibGit2Sharp.Core
5+
namespace LibGit2Sharp
66
{
77
public struct Line
88
{

0 commit comments

Comments
 (0)
0