diff --git a/Octokit.Reactive/Clients/IObservableBlobsClient.cs b/Octokit.Reactive/Clients/IObservableBlobsClient.cs index f254ab96..281026dc 100644 --- a/Octokit.Reactive/Clients/IObservableBlobsClient.cs +++ b/Octokit.Reactive/Clients/IObservableBlobsClient.cs @@ -19,7 +19,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The SHA of the blob - /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(string owner, string name, string reference); @@ -31,7 +30,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The SHA of the blob - /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(int repositoryId, string reference); @@ -44,7 +42,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The new Blob - /// IObservable Create(string owner, string name, NewBlob newBlob); /// @@ -55,7 +52,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The new Blob - /// IObservable Create(int repositoryId, NewBlob newBlob); } } \ No newline at end of file diff --git a/Octokit.Reactive/Clients/ObservableBlobClient.cs b/Octokit.Reactive/Clients/ObservableBlobClient.cs index 6636b496..2f120e70 100644 --- a/Octokit.Reactive/Clients/ObservableBlobClient.cs +++ b/Octokit.Reactive/Clients/ObservableBlobClient.cs @@ -29,7 +29,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The SHA of the blob - /// public IObservable Get(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -47,7 +46,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The SHA of the blob - /// public IObservable Get(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -64,7 +62,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The new Blob - /// public IObservable Create(string owner, string name, NewBlob newBlob) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -82,7 +79,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The new Blob - /// public IObservable Create(int repositoryId, NewBlob newBlob) { Ensure.ArgumentNotNull(newBlob, "newBlob"); diff --git a/Octokit/Clients/BlobsClient.cs b/Octokit/Clients/BlobsClient.cs index 04da93e5..63ec1de9 100644 --- a/Octokit/Clients/BlobsClient.cs +++ b/Octokit/Clients/BlobsClient.cs @@ -28,7 +28,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The SHA of the blob - /// public Task Get(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -46,7 +45,6 @@ namespace Octokit /// /// The ID of the repository /// The SHA of the blob - /// public Task Get(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -63,7 +61,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The new Blob - /// public Task Create(string owner, string name, NewBlob newBlob) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -81,7 +78,6 @@ namespace Octokit /// /// The ID of the repository /// The new Blob - /// public Task Create(int repositoryId, NewBlob newBlob) { Ensure.ArgumentNotNull(newBlob, "newBlob"); diff --git a/Octokit/Clients/IBlobsClient.cs b/Octokit/Clients/IBlobsClient.cs index 6bc3eff7..fc21a0e3 100644 --- a/Octokit/Clients/IBlobsClient.cs +++ b/Octokit/Clients/IBlobsClient.cs @@ -19,7 +19,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The SHA of the blob - /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] Task Get(string owner, string name, string reference); @@ -31,7 +30,6 @@ namespace Octokit /// /// The ID of the repository /// The SHA of the blob - /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] Task Get(int repositoryId, string reference); @@ -44,7 +42,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The new Blob - /// Task Create(string owner, string name, NewBlob newBlob); /// @@ -55,7 +52,6 @@ namespace Octokit /// /// The ID of the repository /// The new Blob - /// Task Create(int repositoryId, NewBlob newBlob); } } \ No newline at end of file