diff --git a/Octokit.Reactive/Clients/IObservableCommitsClient.cs b/Octokit.Reactive/Clients/IObservableCommitsClient.cs index 8d00ccac..09d06199 100644 --- a/Octokit.Reactive/Clients/IObservableCommitsClient.cs +++ b/Octokit.Reactive/Clients/IObservableCommitsClient.cs @@ -20,7 +20,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// Tha sha reference of the commit - /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(string owner, string name, string reference); @@ -33,7 +32,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// Tha sha reference of the commit - /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(int repositoryId, string reference); @@ -47,7 +45,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The commit to create - /// IObservable Create(string owner, string name, NewCommit commit); /// @@ -58,7 +55,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The commit to create - /// IObservable Create(int repositoryId, NewCommit commit); } } \ No newline at end of file diff --git a/Octokit.Reactive/Clients/ObservableCommitsClient.cs b/Octokit.Reactive/Clients/ObservableCommitsClient.cs index 633b8e88..32dc38cc 100644 --- a/Octokit.Reactive/Clients/ObservableCommitsClient.cs +++ b/Octokit.Reactive/Clients/ObservableCommitsClient.cs @@ -29,7 +29,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// Tha sha reference of the commit - /// 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 /// Tha sha reference of the commit - /// 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 commit to create - /// public IObservable Create(string owner, string name, NewCommit commit) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -82,7 +79,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The commit to create - /// public IObservable Create(int repositoryId, NewCommit commit) { Ensure.ArgumentNotNull(commit, "commit"); diff --git a/Octokit/Clients/CommitsClient.cs b/Octokit/Clients/CommitsClient.cs index 55467539..ed8f4937 100644 --- a/Octokit/Clients/CommitsClient.cs +++ b/Octokit/Clients/CommitsClient.cs @@ -28,7 +28,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// Tha sha reference of the commit - /// public Task Get(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -46,7 +45,6 @@ namespace Octokit /// /// The ID of the repository /// Tha sha reference of the commit - /// 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 commit to create - /// public Task Create(string owner, string name, NewCommit commit) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -81,7 +78,6 @@ namespace Octokit /// /// The ID of the repository /// The commit to create - /// public Task Create(int repositoryId, NewCommit commit) { Ensure.ArgumentNotNull(commit, "commit"); diff --git a/Octokit/Clients/ICommitsClient.cs b/Octokit/Clients/ICommitsClient.cs index e2d33a6d..7ef1e85d 100644 --- a/Octokit/Clients/ICommitsClient.cs +++ b/Octokit/Clients/ICommitsClient.cs @@ -20,7 +20,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// Tha sha reference of the commit - /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] Task Get(string owner, string name, string reference); @@ -33,7 +32,6 @@ namespace Octokit /// /// The ID of the repository /// Tha sha reference of the commit - /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] Task Get(int repositoryId, string reference); @@ -47,7 +45,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The commit to create - /// Task Create(string owner, string name, NewCommit commit); /// @@ -58,7 +55,6 @@ namespace Octokit /// /// The ID of the repository /// The commit to create - /// Task Create(int repositoryId, NewCommit commit); } } \ No newline at end of file