From 80a0a2ed75ee184b7f115ea7177390e7602a9b3a Mon Sep 17 00:00:00 2001 From: pltaylor Date: Wed, 6 Nov 2013 19:25:12 -0500 Subject: [PATCH] set Activity client accessor set to private this isn't related to implementing the blobs client. Just noticed it doesn't match the rest of the properties. --- Octokit/GitHubClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit/GitHubClient.cs b/Octokit/GitHubClient.cs index 78106a26..fc8816a7 100644 --- a/Octokit/GitHubClient.cs +++ b/Octokit/GitHubClient.cs @@ -128,7 +128,7 @@ namespace Octokit public IConnection Connection { get; private set; } public IAuthorizationsClient Authorization { get; private set; } - public IActivitiesClient Activity { get; set; } + public IActivitiesClient Activity { get; private set; } public IBlobsClient Blob { get; private set; } public IIssuesClient Issue { get; private set; } public IMiscellaneousClient Miscellaneous { get; private set; }