From 9e749016eabb2213c5d6f02e33a8ffb66e343b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Tue, 24 Sep 2024 11:05:40 +0200 Subject: [PATCH] Seal INavigationProvider, IAsyncResultFilter, IPermissionProvider, StartupBase, IRecipeStepHandler, DisplayDriver, Controller classes. --- Lombiq.ChartJs.Samples/Controllers/SampleController.cs | 2 +- Lombiq.ChartJs.Samples/Startup.cs | 2 +- Lombiq.ChartJs/Startup.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.ChartJs.Samples/Controllers/SampleController.cs b/Lombiq.ChartJs.Samples/Controllers/SampleController.cs index 1b3a9e1..f2c39f9 100644 --- a/Lombiq.ChartJs.Samples/Controllers/SampleController.cs +++ b/Lombiq.ChartJs.Samples/Controllers/SampleController.cs @@ -17,7 +17,7 @@ namespace Lombiq.ChartJs.Samples.Controllers; -public class SampleController : Controller +public sealed class SampleController : Controller { private readonly IOrchardHelper _orchardHelper; private readonly ISession _session; diff --git a/Lombiq.ChartJs.Samples/Startup.cs b/Lombiq.ChartJs.Samples/Startup.cs index 882b9fb..57f1dd2 100644 --- a/Lombiq.ChartJs.Samples/Startup.cs +++ b/Lombiq.ChartJs.Samples/Startup.cs @@ -11,7 +11,7 @@ namespace Lombiq.ChartJs.Samples; -public class Startup : StartupBase +public sealed class Startup : StartupBase { public override void ConfigureServices(IServiceCollection services) { diff --git a/Lombiq.ChartJs/Startup.cs b/Lombiq.ChartJs/Startup.cs index b049c4d..820481c 100644 --- a/Lombiq.ChartJs/Startup.cs +++ b/Lombiq.ChartJs/Startup.cs @@ -6,7 +6,7 @@ namespace Lombiq.ChartJs; -public class Startup : StartupBase +public sealed class Startup : StartupBase { public override void ConfigureServices(IServiceCollection services) {