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:
authorKeith Dahlby <dahlbyk@gmail.com>2012-10-25 23:34:07 +0400
committernulltoken <emeric.fermas@gmail.com>2012-10-25 23:41:43 +0400
commit38ec24f98bcc254622ddcd32e2ff59a6ebb33232 (patch)
tree237b259dcb1b6787e99a15079aed491071a23955 /LibGit2Sharp/Blob.cs
parent9f55693d47151a1cef794842b6d34e22cdd8f488 (diff)
Hide Blob.Size setter
Diffstat (limited to 'LibGit2Sharp/Blob.cs')
-rw-r--r--LibGit2Sharp/Blob.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Blob.cs b/LibGit2Sharp/Blob.cs
index 83cd8dc7..fdf01ab2 100644
--- a/LibGit2Sharp/Blob.cs
+++ b/LibGit2Sharp/Blob.cs
@@ -26,7 +26,7 @@ namespace LibGit2Sharp
/// <summary>
/// Gets the size in bytes of the contents of a blob
/// </summary>
- public virtual int Size { get; set; }
+ public virtual int Size { get; protected set; }
/// <summary>
/// Gets the blob content in a <see cref="byte" /> array.