From 263b5ee0d26c48d86660eebb9a05f9a74b955f7a Mon Sep 17 00:00:00 2001 From: Andreia Gaita Date: Sun, 3 Apr 2016 12:11:36 +0200 Subject: [PATCH] Disables "Ensure login" message until I figure out why it's showing false positives --- .../Sync/EnsureLoggedInSectionSync.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/GitHub.TeamFoundation.14/Sync/EnsureLoggedInSectionSync.cs b/src/GitHub.TeamFoundation.14/Sync/EnsureLoggedInSectionSync.cs index 52f515f511..1fa28314f5 100644 --- a/src/GitHub.TeamFoundation.14/Sync/EnsureLoggedInSectionSync.cs +++ b/src/GitHub.TeamFoundation.14/Sync/EnsureLoggedInSectionSync.cs @@ -6,8 +6,10 @@ namespace GitHub.VisualStudio.TeamExplorer.Sync { - [TeamExplorerSection(SyncLoginSectionId, TeamExplorerPageIds.GitCommits, 10)] - [PartCreationPolicy(CreationPolicy.NonShared)] + // TODO: The IsAGitHubRepo() is somehow giving false positives, need to fix that + // before reactivating this, it's annoying users. + //[TeamExplorerSection(SyncLoginSectionId, TeamExplorerPageIds.GitCommits, 10)] + //[PartCreationPolicy(CreationPolicy.NonShared)] public class EnsureLoggedInSectionSync : EnsureLoggedInSection { public const string SyncLoginSectionId = "C5975729-3CF1-47B4-AE92-C2934906CDDA";