Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
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
1 change: 0 additions & 1 deletion src/GitHub.Api/Application/ApplicationManagerBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ abstract class ApplicationManagerBase : IApplicationManager
{
protected static ILogging Logger { get; } = Logging.GetLogger<IApplicationManager>();

private IEnvironment environment;
private RepositoryManager repositoryManager;

public ApplicationManagerBase(SynchronizationContext synchronizationContext)
Expand Down
1 change: 0 additions & 1 deletion src/GitHub.Api/NewTaskSystem/TaskBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,6 @@ public TaskBase(CancellationToken token)
public TaskBase(Task<TResult> task)
: base()
{
var scheduler = TaskManager.GetScheduler(Affinity);
Task = new Task<TResult>(t =>
{
TResult ret = default(TResult);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,6 @@ private IEnumerable<ProjectConfigurationIssue> EvaluateGitIgnore()
}
}

public override string Name { get { return "Project Evaluation"; } }

private enum SerializationSetting
{
Mixed = 0,
Expand Down
1 change: 0 additions & 1 deletion src/tests/UnitTests/Authentication/KeychainTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,6 @@ public void ShouldConnectSetCredentialsAndClear()

const string username = "SomeUser";
const string password = "SomePassword";
const string token = "SomeToken";

var hostUri = new UriString("https://github.com/");

Expand Down