diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Cache.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/Cache.cs b/OpenSim/Framework/Cache.cs index 2d49146..79e20fc 100644 --- a/OpenSim/Framework/Cache.cs +++ b/OpenSim/Framework/Cache.cs | |||
@@ -529,5 +529,11 @@ namespace OpenSim.Framework | |||
529 | m_Lookup.Remove(uuid); | 529 | m_Lookup.Remove(uuid); |
530 | m_Index.Remove(item); | 530 | m_Index.Remove(item); |
531 | } | 531 | } |
532 | |||
533 | public void Clear() | ||
534 | { | ||
535 | m_Index.Clear(); | ||
536 | m_Lookup.Clear(); | ||
537 | } | ||
532 | } | 538 | } |
533 | } | 539 | } |