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:
authornulltoken <emeric.fermas@gmail.com>2012-07-23 15:54:15 +0400
committernulltoken <emeric.fermas@gmail.com>2012-07-23 19:25:17 +0400
commite99d81993d32855176fd1fef36c14a937ac5db27 (patch)
tree67b4d956e6fbd997c7592a1c391722b8542660d2 /LibGit2Sharp/Diff.cs
parentfa5e0fbc1f97b32fd98b82f1a5f2d37e3b831e66 (diff)
Upgrade libgit2 binaries to 14e1bc1
Fix #193
Diffstat (limited to 'LibGit2Sharp/Diff.cs')
-rw-r--r--LibGit2Sharp/Diff.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Diff.cs b/LibGit2Sharp/Diff.cs
index 25808c56..adb48309 100644
--- a/LibGit2Sharp/Diff.cs
+++ b/LibGit2Sharp/Diff.cs
@@ -17,7 +17,7 @@ namespace LibGit2Sharp
private static GitDiffOptions BuildOptions(IEnumerable<string> paths = null)
{
- var options = new GitDiffOptions { InterhunkLines = 2 };
+ var options = new GitDiffOptions();
if (paths == null)
{