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-09-15 16:24:07 +0400
committernulltoken <emeric.fermas@gmail.com>2011-09-21 21:32:26 +0400
commitdf04d9d21aad672241f4c995a217fc1f473ab818 (patch)
tree525a678107a491d1c767bc23658ca91b1c149968 /LibGit2Sharp/Blob.cs
parent75ae7f95d566368c7d4c8cb0264c1e403fcabb90 (diff)
Enforce code style
Diffstat (limited to 'LibGit2Sharp/Blob.cs')
-rw-r--r--LibGit2Sharp/Blob.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp/Blob.cs b/LibGit2Sharp/Blob.cs
index 3019333b..c9d71660 100644
--- a/LibGit2Sharp/Blob.cs
+++ b/LibGit2Sharp/Blob.cs
@@ -40,7 +40,7 @@ namespace LibGit2Sharp
IntPtr ptr = NativeMethods.git_blob_rawcontent(obj.ObjectPtr);
unsafe
{
- return new UnmanagedMemoryStream((byte*) ptr.ToPointer(), Size);
+ return new UnmanagedMemoryStream((byte*)ptr.ToPointer(), Size);
}
}
}
@@ -65,4 +65,4 @@ namespace LibGit2Sharp
return blob;
}
}
-} \ No newline at end of file
+}