private void RepositoryManagerOnGitAheadBehindStatusUpdated(GitAheadBehindStatus aheadBehindStatus) { taskManager.RunInUI(() => { cacheContainer.GitTrackingStatusCache.Ahead = aheadBehindStatus.Ahead; cacheContainer.GitTrackingStatusCache.Behind = aheadBehindStatus.Behind; }); }
public bool Equals(GitAheadBehindStatus other) { return(ahead == other.ahead && behind == other.behind); }