diff --git a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs
index 02c33f7a..8fbe7d99 100644
--- a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs
+++ b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs
@@ -15,14 +15,12 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- ///
IObservable GetAllForRepository(string owner, string name);
///
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
///
/// The ID of the repository
- ///
IObservable GetAllForRepository(int repositoryId);
///
@@ -31,7 +29,6 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The options to change API's behaviour.
- ///
IObservable GetAllForRepository(string owner, string name, ApiOptions options);
///
@@ -39,7 +36,6 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The options to change API's behaviour.
- ///
IObservable GetAllForRepository(int repositoryId, ApiOptions options);
///
@@ -48,7 +44,6 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// Username of the prospective assignee
- ///
IObservable CheckAssignee(string owner, string name, string assignee);
///
@@ -56,7 +51,6 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// Username of the prospective assignee
- ///
IObservable CheckAssignee(int repositoryId, string assignee);
}
}
diff --git a/Octokit.Reactive/Clients/ObservableAssigneesClient.cs b/Octokit.Reactive/Clients/ObservableAssigneesClient.cs
index 1d1075f1..5006e20c 100644
--- a/Octokit.Reactive/Clients/ObservableAssigneesClient.cs
+++ b/Octokit.Reactive/Clients/ObservableAssigneesClient.cs
@@ -28,7 +28,6 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- ///
public IObservable GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -41,7 +40,6 @@ namespace Octokit.Reactive
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
///
/// The ID of the repository
- ///
public IObservable GetAllForRepository(int repositoryId)
{
return GetAllForRepository(repositoryId, ApiOptions.None);
@@ -53,7 +51,6 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The options to change API's behaviour.
- ///
public IObservable GetAllForRepository(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -68,7 +65,6 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The options to change API's behaviour.
- ///
public IObservable GetAllForRepository(int repositoryId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, "options");
@@ -82,7 +78,6 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// Username of the prospective assignee
- ///
public IObservable CheckAssignee(string owner, string name, string assignee)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -97,7 +92,6 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// Username of the prospective assignee
- ///
public IObservable CheckAssignee(int repositoryId, string assignee)
{
Ensure.ArgumentNotNullOrEmptyString(assignee, "assignee");
diff --git a/Octokit/Clients/AssigneesClient.cs b/Octokit/Clients/AssigneesClient.cs
index 4b3afca5..6d4ec6b5 100644
--- a/Octokit/Clients/AssigneesClient.cs
+++ b/Octokit/Clients/AssigneesClient.cs
@@ -24,7 +24,6 @@ namespace Octokit
///
/// The owner of the repository
/// The name of the repository
- ///
public Task> GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -37,7 +36,6 @@ namespace Octokit
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
///
/// The ID of the repository
- ///
public Task> GetAllForRepository(int repositoryId)
{
return GetAllForRepository(repositoryId, ApiOptions.None);
@@ -49,7 +47,6 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The options to change API's response.
- ///
public Task> GetAllForRepository(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -66,7 +63,6 @@ namespace Octokit
///
/// The ID of the repository
/// The options to change API's response.
- ///
public Task> GetAllForRepository(int repositoryId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, "options");
@@ -82,7 +78,6 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// Username of the prospective assignee
- ///
public async Task CheckAssignee(string owner, string name, string assignee)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -105,7 +100,6 @@ namespace Octokit
///
/// The ID of the repository
/// Username of the prospective assignee
- ///
public async Task CheckAssignee(int repositoryId, string assignee)
{
Ensure.ArgumentNotNullOrEmptyString(assignee, "assignee");
diff --git a/Octokit/Clients/IAssigneesClient.cs b/Octokit/Clients/IAssigneesClient.cs
index 41fbb720..99beb0b9 100644
--- a/Octokit/Clients/IAssigneesClient.cs
+++ b/Octokit/Clients/IAssigneesClient.cs
@@ -16,14 +16,12 @@ namespace Octokit
///
/// The owner of the repository
/// The name of the repository
- ///
Task> GetAllForRepository(string owner, string name);
///
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
///
/// The ID of the repository
- ///
Task> GetAllForRepository(int repositoryId);
///
@@ -32,7 +30,6 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The options to change API's response.
- ///
Task> GetAllForRepository(string owner, string name, ApiOptions options);
///
@@ -40,7 +37,6 @@ namespace Octokit
///
/// The ID of the repository
/// The options to change API's response.
- ///
Task> GetAllForRepository(int repositoryId, ApiOptions options);
///
@@ -49,7 +45,6 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// Username of the prospective assignee
- ///
Task CheckAssignee(string owner, string name, string assignee);
///
@@ -57,7 +52,6 @@ namespace Octokit
///
/// The ID of the repository
/// Username of the prospective assignee
- ///
Task CheckAssignee(int repositoryId, string assignee);
}
}