mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 18:35:35 +00:00
removed <returns> tags
This commit is contained in:
@@ -20,7 +20,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the tag</param>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||
Justification = "Method makes a network request")]
|
||||
IObservable<GitTag> Get(string owner, string name, string reference);
|
||||
@@ -33,7 +32,6 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the tag</param>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||
Justification = "Method makes a network request")]
|
||||
IObservable<GitTag> Get(int repositoryId, string reference);
|
||||
@@ -47,7 +45,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="tag">The tag to create</param>
|
||||
/// <returns></returns>
|
||||
IObservable<GitTag> Create(string owner, string name, NewTag tag);
|
||||
|
||||
/// <summary>
|
||||
@@ -58,7 +55,6 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="tag">The tag to create</param>
|
||||
/// <returns></returns>
|
||||
IObservable<GitTag> Create(int repositoryId, NewTag tag);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,7 +29,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the tag</param>
|
||||
/// <returns></returns>
|
||||
public IObservable<GitTag> Get(string owner, string name, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -47,7 +46,6 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the tag</param>
|
||||
/// <returns></returns>
|
||||
public IObservable<GitTag> Get(int repositoryId, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
||||
@@ -64,7 +62,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="tag">The tag to create</param>
|
||||
/// <returns></returns>
|
||||
public IObservable<GitTag> Create(string owner, string name, NewTag tag)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -82,7 +79,6 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="tag">The tag to create</param>
|
||||
/// <returns></returns>
|
||||
public IObservable<GitTag> Create(int repositoryId, NewTag tag)
|
||||
{
|
||||
Ensure.ArgumentNotNull(tag, "tag");
|
||||
|
||||
@@ -20,7 +20,6 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the tag</param>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||
Justification = "Method makes a network request")]
|
||||
Task<GitTag> Get(string owner, string name, string reference);
|
||||
@@ -33,7 +32,6 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the tag</param>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||
Justification = "Method makes a network request")]
|
||||
Task<GitTag> Get(int repositoryId, string reference);
|
||||
@@ -47,7 +45,6 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="tag">The tag to create</param>
|
||||
/// <returns></returns>
|
||||
Task<GitTag> Create(string owner, string name, NewTag tag);
|
||||
|
||||
/// <summary>
|
||||
@@ -58,7 +55,6 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="tag">The tag to create</param>
|
||||
/// <returns></returns>
|
||||
Task<GitTag> Create(int repositoryId, NewTag tag);
|
||||
}
|
||||
}
|
||||
@@ -28,7 +28,6 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the tag</param>
|
||||
/// <returns></returns>
|
||||
public Task<GitTag> Get(string owner, string name, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -46,7 +45,6 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the tag</param>
|
||||
/// <returns></returns>
|
||||
public Task<GitTag> Get(int repositoryId, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
||||
@@ -63,7 +61,6 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="tag">The tag to create</param>
|
||||
/// <returns></returns>
|
||||
public Task<GitTag> Create(string owner, string name, NewTag tag)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -81,7 +78,6 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="tag">The tag to create</param>
|
||||
/// <returns></returns>
|
||||
public Task<GitTag> Create(int repositoryId, NewTag tag)
|
||||
{
|
||||
Ensure.ArgumentNotNull(tag, "tag");
|
||||
|
||||
Reference in New Issue
Block a user