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-10-07 18:24:29 +0400
committernulltoken <emeric.fermas@gmail.com>2011-10-07 18:24:29 +0400
commit7dc1d79e0921362ecbff7e28c86aada997e7bd45 (patch)
treef5f45a2f4e0770fb490f28fc7ae388afb0de7c09 /LibGit2Sharp/ObjectId.cs
parent54493c1ae6c9f44f0f0d72bf3d601d8fc36dc7a7 (diff)
Fix some missing documentation warnings
Diffstat (limited to 'LibGit2Sharp/ObjectId.cs')
-rw-r--r--LibGit2Sharp/ObjectId.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/LibGit2Sharp/ObjectId.cs b/LibGit2Sharp/ObjectId.cs
index 028d203d..640b1fc9 100644
--- a/LibGit2Sharp/ObjectId.cs
+++ b/LibGit2Sharp/ObjectId.cs
@@ -13,7 +13,14 @@ namespace LibGit2Sharp
private const int rawSize = 20;
private readonly string sha;
+ /// <summary>
+ /// Size of the string-based representation of a SHA-1.
+ /// </summary>
protected const int HexSize = rawSize*2;
+
+ /// <summary>
+ /// Mininum size of the string-based representation of an abbreviated SHA-1.
+ /// </summary>
protected const int MinHexSize = 4;
private const string hexDigits = "0123456789abcdef";