Make internal & private classes sealed where possible, to avoid code for virtual dispatch (#19719)

This commit is contained in:
Henrik
2025-07-21 08:32:54 +02:00
committed by GitHub
parent 0bcc26a811
commit 7f88013689
317 changed files with 451 additions and 479 deletions

View File

@@ -3,7 +3,7 @@ namespace Umbraco.Cms.Infrastructure.Persistence.DatabaseModelDefinitions;
/// <summary>
/// Represents a database index definition retrieved by querying the database
/// </summary>
internal class DbIndexDefinition
internal sealed class DbIndexDefinition
{
public DbIndexDefinition(Tuple<string, string, string, bool> data)
{