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>2013-06-19 20:35:53 +0400
committernulltoken <emeric.fermas@gmail.com>2013-06-19 21:06:16 +0400
commita6714db4e69a4a1aa6b79c1dab2924df36d0d832 (patch)
tree268fe05b1c7b10e2b3a4ef792bb7f9beb6257fd8 /LibGit2Sharp/ObjectDatabase.cs
parentb60f9f6e2f6e2d6fd0d2517088683730570a032b (diff)
Obsolete ObjectDatabase.CreateBlob(BinaryReader, string)
Diffstat (limited to 'LibGit2Sharp/ObjectDatabase.cs')
-rw-r--r--LibGit2Sharp/ObjectDatabase.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGit2Sharp/ObjectDatabase.cs b/LibGit2Sharp/ObjectDatabase.cs
index 6044e366..92b41224 100644
--- a/LibGit2Sharp/ObjectDatabase.cs
+++ b/LibGit2Sharp/ObjectDatabase.cs
@@ -108,6 +108,7 @@ namespace LibGit2Sharp
/// <param name="reader">The reader that will provide the content of the blob to be created.</param>
/// <param name="hintpath">The hintpath is used to determine what git filters should be applied to the object before it can be placed to the object database.</param>
/// <returns>The created <see cref="Blob"/>.</returns>
+ [Obsolete("This method will be removed in the next release. Please use CreateBlob(Stream, string) instead.")]
public virtual Blob CreateBlob(BinaryReader reader, string hintpath = null)
{
Ensure.ArgumentNotNull(reader, "reader");