tidyup - removing now unused variable

This commit is contained in:
Timothy Haagenson
2014-07-10 11:58:00 -05:00
parent bd36696d10
commit 43f8d1b67f

View File

@@ -6,7 +6,6 @@ namespace Octokit.Reactive
{
public class ObservableRepositoryCommitsClient : IObservableRepositoryCommitsClient
{
readonly IGitHubClient _client;
readonly IConnection _connection;
readonly IRepositoryCommitsClient _commit;
@@ -14,7 +13,6 @@ namespace Octokit.Reactive
{
Ensure.ArgumentNotNull(client, "client");
_client = client;
_connection = client.Connection;
_commit = client.Repository.Commits;
}