Skip to content

Commit

Permalink
CaYC: cleanup code applied in touched files
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriela-trutan-sonarsource committed Dec 24, 2024
1 parent 0b259fd commit c2a46b4
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/Integration.Vsix/SonarLintIntegrationPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,9 @@ namespace SonarLint.VisualStudio.Integration.Vsix
[ProvideOptionPage(typeof(GeneralOptionsDialogPage), "SonarQube for Visual Studio", GeneralOptionsDialogPage.PageName, 901, 902, false, 903)]
[ProvideOptionPage(typeof(OtherOptionsDialogPage), "SonarQube for Visual Studio", OtherOptionsDialogPage.PageName, 901, 904, true)]
[ProvideUIContextRule(CommonGuids.PackageActivation, "SonarLintIntegrationPackageActivation",
"(HasCSProj | HasVBProj)",
new string[] { "HasCSProj",
"HasVBProj" },
new string[] { "SolutionHasProjectCapability:CSharp",
"SolutionHasProjectCapability:VB" }
"(HasCSProj | HasVBProj)",
new string[] { "HasCSProj", "HasVBProj" },
new string[] { "SolutionHasProjectCapability:CSharp", "SolutionHasProjectCapability:VB" }
)]
[SuppressMessage("Reliability",
"S2931:Classes with \"IDisposable\" members should implement \"IDisposable\"",
Expand Down Expand Up @@ -87,7 +85,6 @@ private async Task InitOnUIThreadAsync()

IServiceProvider serviceProvider = this;


this.commandManager = new PackageCommandManager(serviceProvider.GetService<IMenuCommandService>());

this.commandManager.Initialize(
Expand Down

0 comments on commit c2a46b4

Please sign in to comment.