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>2013-07-23 01:54:48 +0400
committernulltoken <emeric.fermas@gmail.com>2013-08-03 22:21:36 +0400
commit4b48c2ced408442ca8fccf97d2b27dc31d1d2ee4 (patch)
tree78b738cd0cecd9fac04844268b56a49e3b2e42c5 /LibGit2Sharp/Stash.cs
parent3c03b9fb4360c510e391572f583270d3cf4c6db0 (diff)
Remove obsolete members after 0.13 release
Diffstat (limited to 'LibGit2Sharp/Stash.cs')
-rw-r--r--LibGit2Sharp/Stash.cs12
1 files changed, 1 insertions, 11 deletions
diff --git a/LibGit2Sharp/Stash.cs b/LibGit2Sharp/Stash.cs
index 2c285692..b8ba98a0 100644
--- a/LibGit2Sharp/Stash.cs
+++ b/LibGit2Sharp/Stash.cs
@@ -1,5 +1,4 @@
-using System;
-using System.Linq;
+using System.Linq;
namespace LibGit2Sharp
{
@@ -20,15 +19,6 @@ namespace LibGit2Sharp
{ }
/// <summary>
- /// Gets the <see cref="Commit"/> that this stash points to.
- /// </summary>
- [Obsolete("This property will be removed in the next release. Please use Stash.WorkTree instead.")]
- public virtual Commit Target
- {
- get { return WorkTree; }
- }
-
- /// <summary>
/// Gets the <see cref="Commit"/> that contains to the captured content of the worktree when the
/// stash was created.
/// </summary>