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>2011-04-10 21:38:55 +0400
committernulltoken <emeric.fermas@gmail.com>2011-04-10 21:38:55 +0400
commit4e26d4f2c8a094b364c446b52dcc0caa12527dfe (patch)
treed286118f8bef8e7e7333080b3dc81eb2a5d9b8aa /LibGit2Sharp/Blob.cs
parent5169403ad2eb1f8328645b72cc675a7ef67c5d3a (diff)
Refactor creation of Git objects
Diffstat (limited to 'LibGit2Sharp/Blob.cs')
-rw-r--r--LibGit2Sharp/Blob.cs8
1 files changed, 3 insertions, 5 deletions
diff --git a/LibGit2Sharp/Blob.cs b/LibGit2Sharp/Blob.cs
index ac9fd9f4..70c40043 100644
--- a/LibGit2Sharp/Blob.cs
+++ b/LibGit2Sharp/Blob.cs
@@ -1,11 +1,9 @@
-using System;
-
-namespace LibGit2Sharp
+namespace LibGit2Sharp
{
public class Blob : GitObject
{
- internal Blob(IntPtr obj, ObjectId id = null)
- : base(obj, id)
+ internal Blob(ObjectId id)
+ : base(id)
{
}
}