removed <retuns> tags

This commit is contained in:
aedampir@gmail.com
2016-07-12 08:59:45 +07:00
parent 4ef6c1e23f
commit f077183a77
4 changed files with 0 additions and 16 deletions

View File

@@ -19,7 +19,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">The SHA of the blob</param>
/// <returns></returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable<Blob> Get(string owner, string name, string reference);
@@ -31,7 +30,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA of the blob</param>
/// <returns></returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable<Blob> Get(int repositoryId, string reference);
@@ -44,7 +42,6 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="newBlob">The new Blob</param>
/// <returns></returns>
IObservable<BlobReference> Create(string owner, string name, NewBlob newBlob);
/// <summary>
@@ -55,7 +52,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="newBlob">The new Blob</param>
/// <returns></returns>
IObservable<BlobReference> Create(int repositoryId, NewBlob newBlob);
}
}

View File

@@ -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">The SHA of the blob</param>
/// <returns></returns>
public IObservable<Blob> 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">The SHA of the blob</param>
/// <returns></returns>
public IObservable<Blob> 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="newBlob">The new Blob</param>
/// <returns></returns>
public IObservable<BlobReference> Create(string owner, string name, NewBlob newBlob)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -82,7 +79,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="newBlob">The new Blob</param>
/// <returns></returns>
public IObservable<BlobReference> Create(int repositoryId, NewBlob newBlob)
{
Ensure.ArgumentNotNull(newBlob, "newBlob");

View File

@@ -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">The SHA of the blob</param>
/// <returns></returns>
public Task<Blob> 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">The SHA of the blob</param>
/// <returns></returns>
public Task<Blob> 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="newBlob">The new Blob</param>
/// <returns></returns>
public Task<BlobReference> Create(string owner, string name, NewBlob newBlob)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -81,7 +78,6 @@ namespace Octokit
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="newBlob">The new Blob</param>
/// <returns></returns>
public Task<BlobReference> Create(int repositoryId, NewBlob newBlob)
{
Ensure.ArgumentNotNull(newBlob, "newBlob");

View File

@@ -19,7 +19,6 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">The SHA of the blob</param>
/// <returns></returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
Task<Blob> Get(string owner, string name, string reference);
@@ -31,7 +30,6 @@ namespace Octokit
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="reference">The SHA of the blob</param>
/// <returns></returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
Task<Blob> Get(int repositoryId, string reference);
@@ -44,7 +42,6 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="newBlob">The new Blob</param>
/// <returns></returns>
Task<BlobReference> Create(string owner, string name, NewBlob newBlob);
/// <summary>
@@ -55,7 +52,6 @@ namespace Octokit
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="newBlob">The new Blob</param>
/// <returns></returns>
Task<BlobReference> Create(int repositoryId, NewBlob newBlob);
}
}