lludp remove obsolete pending queue

This commit is contained in:
UbitUmarov
2021-06-02 14:28:47 +01:00
parent a473cbe128
commit 21da22b6ec
6 changed files with 25 additions and 82 deletions

View File

@@ -40,11 +40,7 @@ namespace OpenSim.Framework
/// </summary>
public class AgentCircuitData
{
// DEBUG ON
private static readonly ILog m_log =
LogManager.GetLogger(
MethodBase.GetCurrentMethod().DeclaringType);
// DEBUG OFF
private static readonly ILog m_log = LogManager.GetLogger( MethodBase.GetCurrentMethod().DeclaringType);
/// <summary>
/// Avatar Unique Agent Identifier
@@ -275,7 +271,7 @@ namespace OpenSim.Framework
if (args.TryGetValue("caps_path", out tmpOSD))
CapsPath = tmpOSD.AsString();
if ((args.TryGetValue("children_seeds", out tmpOSD) && tmpOSD is OSDArray))
if (args.TryGetValue("children_seeds", out tmpOSD) && tmpOSD is OSDArray)
{
OSDArray childrenSeeds = (OSDArray)tmpOSD;
ChildrenCapSeeds = new Dictionary<ulong, string>();