Skip to content

Commit f234d62

Browse files
fix: remove duplicate semicolon
1 parent a4128eb commit f234d62

File tree

1 file changed

+1
-1
lines changed
  • UI/UnoBackgroundWorker/UnoBackgroundWorker/UnoBackgroundWorker/Presentation

1 file changed

+1
-1
lines changed

UI/UnoBackgroundWorker/UnoBackgroundWorker/UnoBackgroundWorker/Presentation/MainPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public MainPage()
2020
worker.WorkerSupportsCancellation = true;
2121

2222
// Handle the events of the BackgroundWorker
23-
worker.DoWork += Worker_DoWork; ;
23+
worker.DoWork += Worker_DoWork;
2424
worker.ProgressChanged += Worker_ProgressChanged;
2525
worker.RunWorkerCompleted += Worker_RunWorkerCompleted;
2626
}

0 commit comments

Comments
 (0)