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);