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-06-12 14:20:23 +0400
committernulltoken <emeric.fermas@gmail.com>2012-06-19 17:59:04 +0400
commitb62438b78d9676f6ca6d7c73440a80e3eb2bbc72 (patch)
tree4cd7e11b1ac4bd1663333857db70ef3b3cfeed28 /LibGit2Sharp/Note.cs
parentcda8d3feeabe804af3ba685c27b8ab4ccf4794a1 (diff)
Fix issues raised by Code Analysis
Diffstat (limited to 'LibGit2Sharp/Note.cs')
-rw-r--r--LibGit2Sharp/Note.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Note.cs b/LibGit2Sharp/Note.cs
index f0156810..4786d862 100644
--- a/LibGit2Sharp/Note.cs
+++ b/LibGit2Sharp/Note.cs
@@ -44,7 +44,7 @@ namespace LibGit2Sharp
/// </summary>
public virtual ObjectId TargetObjectId { get; private set; }
- internal static Note BuildFromPtr(Repository repo, string @namespace, ObjectId targetObjectId, NoteSafeHandle note)
+ internal static Note BuildFromPtr(string @namespace, ObjectId targetObjectId, NoteSafeHandle note)
{
ObjectId oid = NativeMethods.git_note_oid(note).MarshalAsObjectId();
string message = NativeMethods.git_note_message(note);