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>2014-04-15 12:38:20 +0400
committernulltoken <emeric.fermas@gmail.com>2014-04-16 21:04:57 +0400
commitac394b41f27fe26a24b6d46a08b630abf02f72ab (patch)
tree0608304ecadaf4045dd5b7d3cde64dd683c98b3e /LibGit2Sharp/ObjectDatabase.cs
parent35ea14dd55582ba1dc4a8ad98e77ae656ee307e9 (diff)
Fix some issues pinpointed by Code Analysis
Diffstat (limited to 'LibGit2Sharp/ObjectDatabase.cs')
-rw-r--r--LibGit2Sharp/ObjectDatabase.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/LibGit2Sharp/ObjectDatabase.cs b/LibGit2Sharp/ObjectDatabase.cs
index 8f3e19ae..f40ec4e8 100644
--- a/LibGit2Sharp/ObjectDatabase.cs
+++ b/LibGit2Sharp/ObjectDatabase.cs
@@ -7,7 +7,6 @@ using System.Linq;
using System.Runtime.InteropServices;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
-using LibGit2Sharp.Handlers;
namespace LibGit2Sharp
{
@@ -108,7 +107,7 @@ namespace LibGit2Sharp
Ensure.ArgumentNotNull(backend, "backend");
Ensure.ArgumentConformsTo(priority, s => s > 0, "priority");
- Proxy.git_odb_add_backend(this.handle, backend.GitOdbBackendPointer, priority);
+ Proxy.git_odb_add_backend(handle, backend.GitOdbBackendPointer, priority);
}
private class Processor