removed duplicate IGitHubClient.Tree property

This commit is contained in:
Brendan Forster
2014-01-22 11:36:41 -08:00
parent 7db3afa072
commit 2a814dd981
4 changed files with 3 additions and 6 deletions

View File

@@ -91,7 +91,6 @@ namespace Octokit
User = new UsersClient(apiConnection);
SshKey = new SshKeysClient(apiConnection);
GitDatabase = new GitDatabaseClient(apiConnection);
Tree = new TreesClient(apiConnection);
Search = new SearchClient(apiConnection);
}
@@ -141,7 +140,6 @@ namespace Octokit
public IUsersClient User { get; private set; }
public INotificationsClient Notification { get; private set; }
public IGitDatabaseClient GitDatabase { get; private set; }
public ITreesClient Tree { get; private set; }
public ISearchClient Search { get; private set; }
static Uri FixUpBaseUri(Uri uri)