mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-23 15:45:28 +00:00
Remove obsolete members (#1622)
* remove obsolete "Branches" methods from RepositoryClient (all were previuosly moved to RepositoryBranchesClient) * Remove obsolete DeploymentStatus fields * Remove obsoleteMergePullRequest.Squash parameter * Remove obsolete request ctor * Remove tests * Not sure how I missed these test references
This commit is contained in:
@@ -10,18 +10,6 @@ namespace Octokit
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class PublicRepositoryRequest : RequestParameters
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="PublicRepositoryRequest"/> class.
|
||||
/// </summary>
|
||||
/// <param name="since">The integer Id of the last Repository that you’ve seen.</param>
|
||||
[Obsolete("Please use the alternative constructor taking a long, rather than int, typed parameter. This constructor will be removed in a future release.")]
|
||||
public PublicRepositoryRequest(int since)
|
||||
{
|
||||
Ensure.ArgumentNotNull(since, "since");
|
||||
|
||||
Since = since;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="PublicRepositoryRequest"/> class.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user