Esempio n. 1
0
 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);
 }