From 23ce3259ee1d2625ba1b9bd6cf008bb021dffc3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Thu, 14 Dec 2023 20:28:54 +0100 Subject: [PATCH] removed pragma that did nothing --- src/Pilgaard.BackgroundJobs/BackgroundJobService.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Pilgaard.BackgroundJobs/BackgroundJobService.cs b/src/Pilgaard.BackgroundJobs/BackgroundJobService.cs index 74e6545..2e6ba70 100644 --- a/src/Pilgaard.BackgroundJobs/BackgroundJobService.cs +++ b/src/Pilgaard.BackgroundJobs/BackgroundJobService.cs @@ -126,7 +126,6 @@ internal void ScheduleRecurringJobs(CancellationToken cancellationToken) } } -#pragma warning disable IDE0060 /// /// Runs the recurring job. /// @@ -136,7 +135,6 @@ internal void ScheduleRecurringJobs(CancellationToken cancellationToken) /// A which can be used to cancel the background job. internal async Task RunRecurringJobAsync(object sender, EventArgs eventArgs, BackgroundJobRegistration registration, CancellationToken cancellationToken) => await RunJobAsync(registration, cancellationToken); -#pragma warning restore IDE0060 /// /// Constructs the background job using and runs it.