diff --git a/Octokit.Reactive/Clients/IObservableRepositoryPagesClient.cs b/Octokit.Reactive/Clients/IObservableRepositoryPagesClient.cs
index f0693d9e..8b9c19ad 100644
--- a/Octokit.Reactive/Clients/IObservableRepositoryPagesClient.cs
+++ b/Octokit.Reactive/Clients/IObservableRepositoryPagesClient.cs
@@ -19,7 +19,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable Get(string owner, string name);
@@ -30,7 +29,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable Get(int repositoryId);
@@ -42,7 +40,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
IObservable GetAll(string owner, string name);
///
@@ -52,7 +49,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
IObservable GetAll(int repositoryId);
///
@@ -64,7 +60,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
IObservable GetAll(string owner, string name, ApiOptions options);
///
@@ -75,7 +70,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
IObservable GetAll(int repositoryId, ApiOptions options);
///
@@ -86,7 +80,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
IObservable GetLatest(string owner, string name);
///
@@ -96,7 +89,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
IObservable GetLatest(int repositoryId);
}
}
diff --git a/Octokit.Reactive/Clients/ObservableRepositoryPagesClient.cs b/Octokit.Reactive/Clients/ObservableRepositoryPagesClient.cs
index fa8164c3..1c61be78 100644
--- a/Octokit.Reactive/Clients/ObservableRepositoryPagesClient.cs
+++ b/Octokit.Reactive/Clients/ObservableRepositoryPagesClient.cs
@@ -32,7 +32,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
public IObservable Get(string owner, string name)
{
@@ -49,7 +48,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
public IObservable Get(int repositoryId)
{
return _client.Get(repositoryId).ToObservable();
@@ -63,7 +61,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
public IObservable GetAll(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -79,7 +76,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
public IObservable GetAll(int repositoryId)
{
return GetAll(repositoryId, ApiOptions.None);
@@ -94,7 +90,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
public IObservable GetAll(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -112,7 +107,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
public IObservable GetAll(int repositoryId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, "options");
@@ -128,7 +122,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
public IObservable GetLatest(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -144,7 +137,6 @@ namespace Octokit.Reactive
///
/// See the API documentation for more information.
///
- ///
public IObservable GetLatest(int repositoryId)
{
return _client.GetLatest(repositoryId).ToObservable();
diff --git a/Octokit/Clients/IRepositoryPagesClient.cs b/Octokit/Clients/IRepositoryPagesClient.cs
index 08e4f413..56747d9d 100644
--- a/Octokit/Clients/IRepositoryPagesClient.cs
+++ b/Octokit/Clients/IRepositoryPagesClient.cs
@@ -20,7 +20,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
Task Get(string owner, string name);
@@ -31,7 +30,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
Task Get(int repositoryId);
@@ -43,7 +41,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
Task> GetAll(string owner, string name);
///
@@ -53,7 +50,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
Task> GetAll(int repositoryId);
///
@@ -65,7 +61,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
Task> GetAll(string owner, string name, ApiOptions options);
///
@@ -76,7 +71,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
Task> GetAll(int repositoryId, ApiOptions options);
///
@@ -87,7 +81,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
Task GetLatest(string owner, string name);
///
@@ -97,7 +90,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
Task GetLatest(int repositoryId);
}
}
diff --git a/Octokit/Clients/RepositoryPagesClient.cs b/Octokit/Clients/RepositoryPagesClient.cs
index 3310def7..af3ff7c7 100644
--- a/Octokit/Clients/RepositoryPagesClient.cs
+++ b/Octokit/Clients/RepositoryPagesClient.cs
@@ -27,7 +27,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
public Task Get(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -43,7 +42,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
public Task Get(int repositoryId)
{
return ApiConnection.Get(ApiUrls.RepositoryPage(repositoryId));
@@ -57,7 +55,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
public Task> GetAll(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -73,7 +70,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
public Task> GetAll(int repositoryId)
{
return GetAll(repositoryId, ApiOptions.None);
@@ -88,7 +84,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
public Task> GetAll(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -107,7 +102,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
public Task> GetAll(int repositoryId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, "options");
@@ -124,7 +118,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
public Task GetLatest(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -140,7 +133,6 @@ namespace Octokit
///
/// See the API documentation for more information.
///
- ///
public Task GetLatest(int repositoryId)
{
return ApiConnection.Get(ApiUrls.RepositoryPageBuildsLatest(repositoryId));