diff --git a/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs
index 220a4da4..3bc3097a 100644
--- a/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs
+++ b/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs
@@ -18,7 +18,6 @@ namespace Octokit.Reactive
/// The name of the repository
/// The comment id
/// The reaction to create
- ///
IObservable Create(string owner, string name, int number, NewReaction reaction);
///
@@ -28,7 +27,6 @@ namespace Octokit.Reactive
/// The ID of the repository
/// The comment id
/// The reaction to create
- ///
IObservable Create(int repositoryId, int number, NewReaction reaction);
///
@@ -38,7 +36,6 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The comment id
- ///
IObservable GetAll(string owner, string name, int number);
///
@@ -47,7 +44,6 @@ namespace Octokit.Reactive
/// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment
/// The ID of the repository
/// The comment id
- ///
IObservable GetAll(int repositoryId, int number);
}
}
diff --git a/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs b/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs
index d986fda1..e804a5e9 100644
--- a/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs
+++ b/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs
@@ -31,7 +31,6 @@ namespace Octokit.Reactive
/// The name of the repository
/// The comment id
/// The reaction to create
- ///
public IObservable Create(string owner, string name, int number, NewReaction reaction)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -48,7 +47,6 @@ namespace Octokit.Reactive
/// The ID of the repository
/// The comment id
/// The reaction to create
- ///
public IObservable Create(int repositoryId, int number, NewReaction reaction)
{
Ensure.ArgumentNotNull(reaction, "reaction");
@@ -63,7 +61,6 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The comment id
- ///
public IObservable GetAll(string owner, string name, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -78,7 +75,6 @@ namespace Octokit.Reactive
/// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment
/// The ID of the repository
/// The comment id
- ///
public IObservable GetAll(int repositoryId, int number)
{
return _connection.GetAndFlattenAllPages(ApiUrls.IssueCommentReactions(repositoryId, number), null, AcceptHeaders.ReactionsPreview);
diff --git a/Octokit/Clients/IIssueCommentReactionsClient.cs b/Octokit/Clients/IIssueCommentReactionsClient.cs
index 257cafcf..434be97c 100644
--- a/Octokit/Clients/IIssueCommentReactionsClient.cs
+++ b/Octokit/Clients/IIssueCommentReactionsClient.cs
@@ -19,7 +19,6 @@ namespace Octokit
/// The name of the repository
/// The comment id
/// The reaction to create
- ///
Task Create(string owner, string name, int number, NewReaction reaction);
///
@@ -29,7 +28,6 @@ namespace Octokit
/// The ID of the repository
/// The comment id
/// The reaction to create
- ///
Task Create(int repositoryId, int number, NewReaction reaction);
///
@@ -39,7 +37,6 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The comment id
- ///
Task> GetAll(string owner, string name, int number);
///
@@ -48,7 +45,6 @@ namespace Octokit
/// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment
/// The ID of the repository
/// The comment id
- ///
Task> GetAll(int repositoryId, int number);
}
}
diff --git a/Octokit/Clients/IssueCommentReactionsClient.cs b/Octokit/Clients/IssueCommentReactionsClient.cs
index 39df13c0..dfa15859 100644
--- a/Octokit/Clients/IssueCommentReactionsClient.cs
+++ b/Octokit/Clients/IssueCommentReactionsClient.cs
@@ -24,7 +24,6 @@ namespace Octokit
/// The name of the repository
/// The comment id
/// The reaction to create
- ///
public Task Create(string owner, string name, int number, NewReaction reaction)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -41,7 +40,6 @@ namespace Octokit
/// The ID of the repository
/// The comment id
/// The reaction to create
- ///
public Task Create(int repositoryId, int number, NewReaction reaction)
{
Ensure.ArgumentNotNull(reaction, "reaction");
@@ -56,7 +54,6 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The comment id
- ///
public Task> GetAll(string owner, string name, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -71,7 +68,6 @@ namespace Octokit
/// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment
/// The ID of the repository
/// The comment id
- ///
public Task> GetAll(int repositoryId, int number)
{
return ApiConnection.GetAll(ApiUrls.IssueCommentReactions(repositoryId, number), AcceptHeaders.ReactionsPreview);