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

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/IndexReucEntry.cs')
-rw-r--r--LibGit2Sharp/IndexReucEntry.cs12
1 files changed, 8 insertions, 4 deletions
diff --git a/LibGit2Sharp/IndexReucEntry.cs b/LibGit2Sharp/IndexReucEntry.cs
index ffba71e0..788f14be 100644
--- a/LibGit2Sharp/IndexReucEntry.cs
+++ b/LibGit2Sharp/IndexReucEntry.cs
@@ -15,9 +15,9 @@ namespace LibGit2Sharp
{
private static readonly LambdaEqualityHelper<IndexReucEntry> equalityHelper =
new LambdaEqualityHelper<IndexReucEntry>(x => x.Path,
- x => x.AncestorId, x => x.AncestorMode,
- x => x.OurId, x => x.OurMode,
- x => x.TheirId, x => x.TheirMode);
+ x => x.AncestorId, x => x.AncestorMode,
+ x => x.OurId, x => x.OurMode,
+ x => x.TheirId, x => x.TheirMode);
/// <summary>
/// Needed for mocking purposes.
@@ -145,7 +145,11 @@ namespace LibGit2Sharp
get
{
return string.Format(CultureInfo.InvariantCulture,
- "{0}: {1} {2} {3}", Path, AncestorId, OurId, TheirId);
+ "{0}: {1} {2} {3}",
+ Path,
+ AncestorId,
+ OurId,
+ TheirId);
}
}
}