mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
*test*
This commit is contained in:
@@ -80,5 +80,22 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
|
||||
return UUID.Zero;
|
||||
}
|
||||
|
||||
public Dictionary<string, UUID> CloneAOPairs()
|
||||
{
|
||||
lock (m_overrides)
|
||||
{
|
||||
return new Dictionary<string, UUID>(m_overrides);
|
||||
}
|
||||
}
|
||||
|
||||
public void CopyAOPairsFrom(Dictionary<string, UUID> src)
|
||||
{
|
||||
lock (m_overrides)
|
||||
{
|
||||
m_overrides.Clear();
|
||||
m_overrides = new Dictionary<string, UUID>(src);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user