Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Update octokit to 0.22.0 #535

Merged
merged 1 commit into from
Sep 5, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/GitHub.App/Api/ApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,11 @@ public IObservable<Repository> GetRepositories()

public IObservable<Branch> GetBranches(string owner, string repo)
{
#pragma warning disable CS0618
// GetAllBranches is obsolete, but don't want to introduce the change to fix the
// warning in the PR, so disabling for now.
return gitHubClient.Repository.GetAllBranches(owner, repo);
#pragma warning restore
}

public IObservable<Repository> GetRepository(string owner, string repo)
Expand Down
2 changes: 1 addition & 1 deletion submodules/octokit.net
Submodule octokit.net updated 393 files