From e837b0c4d68945744a1c6535b53635ab80e23b5a Mon Sep 17 00:00:00 2001 From: Cinder Roxley Date: Thu, 10 Jul 2025 17:14:48 -0500 Subject: [PATCH] Minor --- .../TestClient/Commands/Estate/GetEstateCovenantCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Programs/examples/TestClient/Commands/Estate/GetEstateCovenantCommand.cs b/Programs/examples/TestClient/Commands/Estate/GetEstateCovenantCommand.cs index e14d2290..ed907e8a 100644 --- a/Programs/examples/TestClient/Commands/Estate/GetEstateCovenantCommand.cs +++ b/Programs/examples/TestClient/Commands/Estate/GetEstateCovenantCommand.cs @@ -7,7 +7,7 @@ namespace OpenMetaverse.TestClient { public class GetEstateCovenantCommand : Command { - AutoResetEvent waitEvent = new AutoResetEvent(false); + private readonly AutoResetEvent waitEvent = new AutoResetEvent(false); private static StringBuilder result = new StringBuilder(); public GetEstateCovenantCommand(TestClient client)