Remove two places where DeepClone wasn't needed

This commit is contained in:
Matt Nadareski
2026-04-04 13:13:16 -04:00
parent 9c1d2e7b9c
commit 0458489a4f
2 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ namespace SabreTools.Metadata.DatItems.Test
/// <inheritdoc/>
public override object Clone() => new TestDatItem()
{
_internal = _internal.DeepClone() as TestDatItemModel ?? []
_internal = GetInternalClone(),
};
/// <inheritdoc/>