File tree Expand file tree Collapse file tree 2 files changed +1
-26
lines changed Expand file tree Collapse file tree 2 files changed +1
-26
lines changed Original file line number Diff line number Diff line change @@ -88,17 +88,6 @@ IEnumerator IEnumerable.GetEnumerator()
88
88
89
89
#endregion
90
90
91
- /// <summary>
92
- /// Checkout the branch with the specified by name.
93
- /// </summary>
94
- /// <param name = "shaOrReferenceName">The sha of the commit, a canonical reference name or the name of the branch to checkout.</param>
95
- /// <returns></returns>
96
- [ Obsolete ( "This method will be removed in the next release. Please use Repository.Checkout() instead." ) ]
97
- public Branch Checkout ( string shaOrReferenceName )
98
- {
99
- return repo . Checkout ( shaOrReferenceName ) ;
100
- }
101
-
102
91
/// <summary>
103
92
/// Create a new local branch with the specified name
104
93
/// </summary>
Original file line number Diff line number Diff line change 1
- using System ;
2
- using System . Collections ;
1
+ using System . Collections ;
3
2
using System . Collections . Generic ;
4
3
using System . Linq ;
5
4
using LibGit2Sharp . Core ;
@@ -101,19 +100,6 @@ public IEnumerable<Blob> Blobs
101
100
}
102
101
}
103
102
104
-
105
- /// <summary>
106
- /// Gets the <see cref = "Blob" />s immediately under this <see cref = "Tree" />.
107
- /// </summary>
108
- [ Obsolete ( "This property will be removed in the next release. Please use Tree.Blobs instead." ) ]
109
- public IEnumerable < Blob > Files
110
- {
111
- get
112
- {
113
- return Blobs ;
114
- }
115
- }
116
-
117
103
internal string Path
118
104
{
119
105
get { return path . Native ; }
You can’t perform that action at this time.
0 commit comments