Skip to content

Commit a2fe6ae

Browse files
authored
Merge pull request #746 from mikeirvingweb/master
UnoBackgroundWorker sample - remove duplicate semicolon
2 parents a4128eb + f234d62 commit a2fe6ae

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)