Skip to content

Commit 27c995c

Browse files
committed
Remove sealed from DefaultObjectFactory
Fixes #982
1 parent 485daaa commit 27c995c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

YamlDotNet/Serialization/ObjectFactories/DefaultObjectFactory.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace YamlDotNet.Serialization.ObjectFactories
3232
/// <summary>
3333
/// Creates objects using Activator.CreateInstance.
3434
/// </summary>
35-
public sealed class DefaultObjectFactory : ObjectFactoryBase
35+
public class DefaultObjectFactory : ObjectFactoryBase
3636
{
3737
private readonly Dictionary<Type, ConcurrentDictionary<Type, MethodInfo[]>> stateMethods = new()
3838
{

0 commit comments

Comments
 (0)