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-03 01:32:18 +0400
committernulltoken <emeric.fermas@gmail.com>2013-06-03 01:33:30 +0400
commit9fd0803eb04d929bb55b1c638b34e35989315d8a (patch)
treed81b0d768b20d4105072a46e89edb27edd9f965e /LibGit2Sharp/TreeEntryTargetType.cs
parentf2e2fac618f0b656379fa32c967dcdb0dc2742dd (diff)
Remove obsolete members
Diffstat (limited to 'LibGit2Sharp/TreeEntryTargetType.cs')
-rw-r--r--LibGit2Sharp/TreeEntryTargetType.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/LibGit2Sharp/TreeEntryTargetType.cs b/LibGit2Sharp/TreeEntryTargetType.cs
index b6a5a2d8..80559bec 100644
--- a/LibGit2Sharp/TreeEntryTargetType.cs
+++ b/LibGit2Sharp/TreeEntryTargetType.cs
@@ -11,7 +11,7 @@ namespace LibGit2Sharp
/// <summary>
/// A file revision object.
/// </summary>
- Blob = 1,
+ Blob,
/// <summary>
/// A tree object.
@@ -19,12 +19,6 @@ namespace LibGit2Sharp
Tree,
/// <summary>
- /// An annotated tag object.
- /// </summary>
- [Obsolete("This entry will be removed in the next release as it is not a valid TreeEntryTargetType.")]
- Tag,
-
- /// <summary>
/// A pointer to a commit object in another repository.
/// </summary>
GitLink,