Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 29cf4b9

Browse files
Removing unused fields from ApiClient
1 parent 5d2582f commit 29cf4b9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/GitHub.Api/Application/ApiClient.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using System.Threading;
54
using System.Threading.Tasks;
65
using Octokit;
76

@@ -27,14 +26,10 @@ public static IApiClient Create(UriString repositoryUrl, IKeychain keychain)
2726
private readonly IKeychain keychain;
2827
private readonly IGitHubClient githubClient;
2928
private readonly ILoginManager loginManager;
30-
private static readonly SemaphoreSlim sem = new SemaphoreSlim(1);
3129

3230
IList<Organization> organizationsCache;
3331
Octokit.User userCache;
3432

35-
string owner;
36-
bool? isEnterprise;
37-
3833
public ApiClient(UriString hostUrl, IKeychain keychain, IGitHubClient githubClient)
3934
{
4035
Guard.ArgumentNotNull(hostUrl, nameof(hostUrl));

0 commit comments

Comments
 (0)