Skip to content

Commit 1ae17a3

Browse files
committed
Drop obsolete members after release v0.14.1
1 parent 2f4368b commit 1ae17a3

File tree

3 files changed

+0
-61
lines changed

3 files changed

+0
-61
lines changed

LibGit2Sharp/LibGit2Sharp.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@
107107
<Compile Include="Core\GitRemoteHead.cs" />
108108
<Compile Include="ReflogEntry.cs" />
109109
<Compile Include="Stash.cs" />
110-
<Compile Include="OrphanedHeadException.cs" />
111110
<Compile Include="StashCollection.cs" />
112111
<Compile Include="ExplicitPathsOptions.cs" />
113112
<Compile Include="Submodule.cs" />

LibGit2Sharp/OrphanedHeadException.cs

Lines changed: 0 additions & 50 deletions
This file was deleted.

LibGit2Sharp/RepositoryInformation.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,6 @@ public virtual bool IsHeadDetached
6060
get { return Proxy.git_repository_head_detached(repo.Handle); }
6161
}
6262

63-
/// <summary>
64-
/// Indicates whether the Head points to a reference which doesn't exist.
65-
/// </summary>
66-
[Obsolete("This property will be removed in the next release. Please use IsHeadUnborn instead.")]
67-
public virtual bool IsHeadOrphaned
68-
{
69-
get { return IsHeadUnborn; }
70-
}
71-
72-
7363
/// <summary>
7464
/// Indicates whether the Head points to a reference which doesn't exist.
7565
/// </summary>

0 commit comments

Comments
 (0)