Strip out the rest of our pretty C#8 and C#9 niceness to bring back .NET framework support a little longer

This commit is contained in:
cinder
2022-11-20 00:46:46 -06:00
parent b73bca2c98
commit b85220d4e3
13 changed files with 109 additions and 74 deletions

View File

@@ -9,7 +9,8 @@ namespace OpenMetaverse.TestClient
public class CloneCommand : Command
{
uint _serialNum = 2;
readonly CacheDictionary<UUID, AvatarAppearancePacket> Appearances = new(100, new LruRemovalStrategy<UUID>());
readonly CacheDictionary<UUID, AvatarAppearancePacket> Appearances =
new CacheDictionary<UUID, AvatarAppearancePacket>(100, new LruRemovalStrategy<UUID>());
public CloneCommand(TestClient testClient)
{