mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-21 14:45:11 +00:00
tidyup - removing now unused variable
This commit is contained in:
@@ -6,7 +6,6 @@ namespace Octokit.Reactive
|
|||||||
{
|
{
|
||||||
public class ObservableRepositoryCommitsClient : IObservableRepositoryCommitsClient
|
public class ObservableRepositoryCommitsClient : IObservableRepositoryCommitsClient
|
||||||
{
|
{
|
||||||
readonly IGitHubClient _client;
|
|
||||||
readonly IConnection _connection;
|
readonly IConnection _connection;
|
||||||
readonly IRepositoryCommitsClient _commit;
|
readonly IRepositoryCommitsClient _commit;
|
||||||
|
|
||||||
@@ -14,7 +13,6 @@ namespace Octokit.Reactive
|
|||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(client, "client");
|
Ensure.ArgumentNotNull(client, "client");
|
||||||
|
|
||||||
_client = client;
|
|
||||||
_connection = client.Connection;
|
_connection = client.Connection;
|
||||||
_commit = client.Repository.Commits;
|
_commit = client.Repository.Commits;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user