Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit c5cd608

Browse files
committed
Kill parens with 🔥
1 parent 990143e commit c5cd608

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/GitHub.VisualStudio/TeamExplorer/Connect/GitHubConnectSection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ void StartFlow(UIControllerFlow controllerFlow)
327327
var uiProvider = ServiceProvider.GetExportedValue<IUIProvider>();
328328
uiProvider.GitServiceProvider = ServiceProvider;
329329
var ret = uiProvider.SetupUI(controllerFlow, SectionConnection);
330-
ret.Subscribe((c) =>
330+
ret.Subscribe(c =>
331331
{
332332
if (c.IsViewType(UIViewType.Clone))
333333
isCloning = true;

src/GitHub.VisualStudio/TeamExplorer/Sync/GitHubPublishSection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ void ShowPublish()
135135
disposable = uiflow;
136136
var ui = uiflow.Value;
137137
var creation = ui.SelectFlow(UIControllerFlow.Publish);
138-
creation.Subscribe((c) =>
138+
creation.Subscribe(c =>
139139
{
140140
SectionContent = c;
141141
c.DataContext = this;

0 commit comments

Comments
 (0)