Skip to content

Commit

Permalink
Remove sealed from DefaultObjectFactory
Browse files Browse the repository at this point in the history
Fixes #982
  • Loading branch information
EdwardCooke committed Sep 26, 2024
1 parent 485daaa commit 27c995c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace YamlDotNet.Serialization.ObjectFactories
/// <summary>
/// Creates objects using Activator.CreateInstance.
/// </summary>
public sealed class DefaultObjectFactory : ObjectFactoryBase
public class DefaultObjectFactory : ObjectFactoryBase
{
private readonly Dictionary<Type, ConcurrentDictionary<Type, MethodInfo[]>> stateMethods = new()
{
Expand Down

0 comments on commit 27c995c

Please sign in to comment.