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:
authoryorah <yoram.harmelin@gmail.com>2012-08-31 16:23:10 +0400
committernulltoken <emeric.fermas@gmail.com>2012-09-03 21:55:52 +0400
commit1939521cf4f454eafee14bd0d5def4ee2c29240b (patch)
tree1ba3ded0dbf6816aa9684fd0d87ac132711516ce /LibGit2Sharp/Note.cs
parenteb304fb0c92df60339836b962a96a3d43f48d7f7 (diff)
Unify BuildFromPtr/CreateFromPtr implementation and usage
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 5a1f5c71..580aa2ea 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(string @namespace, ObjectId targetObjectId, NoteSafeHandle note)
+ internal static Note BuildFromPtr(NoteSafeHandle note, string @namespace, ObjectId targetObjectId)
{
ObjectId oid = Proxy.git_note_oid(note);
string message = Proxy.git_note_message(note);