From f4ec5ed46f912e7b191b7a64bb2317575a9c3cb0 Mon Sep 17 00:00:00 2001 From: cinder Date: Mon, 16 Jun 2025 21:43:20 -0500 Subject: [PATCH] Remove obsolete examples from LockingDictionary --- LibreMetaverse/LockingDictionary.cs | 9 --------- LibreMetaverse/ObservableDictionary.cs | 9 --------- 2 files changed, 18 deletions(-) diff --git a/LibreMetaverse/LockingDictionary.cs b/LibreMetaverse/LockingDictionary.cs index 6b8de55b..8aa44475 100644 --- a/LibreMetaverse/LockingDictionary.cs +++ b/LibreMetaverse/LockingDictionary.cs @@ -170,15 +170,6 @@ namespace OpenMetaverse /// Key to use for lookup /// Value returned /// if specified key exists, if not found - /// - /// - /// // find your avatar using the Simulator.ObjectsAvatars LockingDictionary: - /// Avatar av; - /// if (Client.Network.CurrentSim.ObjectsAvatars.TryGetValue(Client.Self.AgentID, out av)) - /// Console.WriteLine("Found Avatar {0}", av.Name); - /// - /// - /// public bool TryGetValue(TKey key, out TValue value) { lock (Dictionary) diff --git a/LibreMetaverse/ObservableDictionary.cs b/LibreMetaverse/ObservableDictionary.cs index 2f1ea303..416366d2 100644 --- a/LibreMetaverse/ObservableDictionary.cs +++ b/LibreMetaverse/ObservableDictionary.cs @@ -172,15 +172,6 @@ namespace OpenMetaverse /// Key to use for lookup /// Value returned /// if specified key exists, if not found - /// - /// - /// // find your avatar using the Simulator.ObjectsAvatars ObservableDictionary: - /// Avatar av; - /// if (Client.Network.CurrentSim.ObjectsAvatars.TryGetValue(Client.Self.AgentID, out av)) - /// Console.WriteLine("Found Avatar {0}", av.Name); - /// - /// - /// public bool TryGetValue(TKey key, out TValue value) { return Dictionary.TryGetValue(key, out value);