mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-08 04:40:54 +00:00
migrate to dotnet-format tool (#2016)
* migrate to new dotnet-format tool in build script (run on local build) * reformat code
This commit is contained in:
@@ -107,7 +107,7 @@ namespace Octokit.Reactive
|
||||
public IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(options, nameof(options));
|
||||
|
||||
|
||||
return _connection.GetAndFlattenAllPages<Reaction>(ApiUrls.IssueCommentReactions(repositoryId, number), null, AcceptHeaders.ReactionsPreview, options);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -73,7 +73,7 @@ namespace Octokit.Reactive
|
||||
public IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(options, nameof(options));
|
||||
|
||||
|
||||
return _connection.GetAndFlattenAllPages<Reaction>(ApiUrls.IssueReactions(repositoryId, number), null, AcceptHeaders.ReactionsPreview, options);
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ namespace Octokit.Reactive
|
||||
public IObservable<Migration> GetAll(string org, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(options, nameof(options));
|
||||
|
||||
|
||||
return _connection.GetAndFlattenAllPages<Migration>(ApiUrls.EnterpriseMigrations(org), null, AcceptHeaders.MigrationsApiPreview, options);
|
||||
}
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ namespace Octokit.Reactive
|
||||
public IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(options, nameof(options));
|
||||
|
||||
|
||||
return _connection.GetAndFlattenAllPages<Reaction>(ApiUrls.PullRequestReviewCommentReaction(repositoryId, number), null, AcceptHeaders.ReactionsPreview, options);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user