Move Starring into Activities

It's where it belongs.
This commit is contained in:
James R Sconfitto
2013-11-10 13:18:27 -05:00
parent 1c26f5e683
commit 8c231da69f
4 changed files with 3 additions and 3 deletions
+2
View File
@@ -6,8 +6,10 @@
: base(apiConnection)
{
Events = new EventsClient(apiConnection);
Starring = new StarredClient(apiConnection);
}
public IEventsClient Events { get; private set; }
public IStarredClient Starring { get; private set; }
}
}
+1
View File
@@ -3,5 +3,6 @@
public interface IActivitiesClient
{
IEventsClient Events { get; }
IStarredClient Starring { get; }
}
}
-2
View File
@@ -89,7 +89,6 @@ namespace Octokit
Release = new ReleasesClient(apiConnection);
User = new UsersClient(apiConnection);
SshKey = new SshKeysClient(apiConnection);
Star = new StarredClient(apiConnection);
GitDatabase = new GitDatabaseClient(apiConnection);
}
@@ -135,7 +134,6 @@ namespace Octokit
public IRepositoriesClient Repository { get; private set; }
public IReleasesClient Release { get; private set; }
public ISshKeysClient SshKey { get; private set; }
public IStarredClient Star { get; private set; }
public IUsersClient User { get; private set; }
public INotificationsClient Notification { get; private set; }
public IGitDatabaseClient GitDatabase { get; private set; }
-1
View File
@@ -14,7 +14,6 @@ namespace Octokit
IRepositoriesClient Repository { get; }
IReleasesClient Release { get; }
ISshKeysClient SshKey { get; }
IStarredClient Star { get; }
IUsersClient User { get; }
INotificationsClient Notification { get; }
IGitDatabaseClient GitDatabase { get; }