removed WatchedCount property from Repository, resolves #699

This commit is contained in:
David Martin
2015-02-11 23:04:38 +00:00
parent 9d57bca27a
commit 9389b4150f
+1 -4
View File
@@ -14,7 +14,7 @@ namespace Octokit
Id = id;
}
public Repository(string url, string htmlUrl, string cloneUrl, string gitUrl, string sshUrl, string svnUrl, string mirrorUrl, int id, User owner, string name, string fullName, string description, string homepage, string language, bool @private, bool fork, int forksCount, int stargazersCount, int watchersCount, int subscribersCount, string defaultBranch, int openIssuesCount, DateTimeOffset? pushedAt, DateTimeOffset createdAt, DateTimeOffset updatedAt, RepositoryPermissions permissions, User organization, Repository parent, Repository source, bool hasIssues, bool hasWiki, bool hasDownloads)
public Repository(string url, string htmlUrl, string cloneUrl, string gitUrl, string sshUrl, string svnUrl, string mirrorUrl, int id, User owner, string name, string fullName, string description, string homepage, string language, bool @private, bool fork, int forksCount, int stargazersCount, int subscribersCount, string defaultBranch, int openIssuesCount, DateTimeOffset? pushedAt, DateTimeOffset createdAt, DateTimeOffset updatedAt, RepositoryPermissions permissions, User organization, Repository parent, Repository source, bool hasIssues, bool hasWiki, bool hasDownloads)
{
Url = url;
HtmlUrl = htmlUrl;
@@ -34,7 +34,6 @@ namespace Octokit
Fork = fork;
ForksCount = forksCount;
StargazersCount = stargazersCount;
WatchersCount = watchersCount;
SubscribersCount = subscribersCount;
DefaultBranch = defaultBranch;
OpenIssuesCount = openIssuesCount;
@@ -86,8 +85,6 @@ namespace Octokit
public int StargazersCount { get; protected set; }
public int WatchersCount { get; protected set; }
public int SubscribersCount { get; protected set; }
public string DefaultBranch { get; protected set; }