aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorUbitUmarov2016-11-18 15:16:11 +0000
committerUbitUmarov2016-11-18 15:16:11 +0000
commitb43f36abf168a0cce7e71178e3d4766a717c7d60 (patch)
tree3156b902c61f8fa672b54f5d4363bd53f4ad9572 /OpenSim/Region/Framework/Interfaces
parent avoid a null ref. (needs better way) (diff)
downloadopensim-SC_OLD-b43f36abf168a0cce7e71178e3d4766a717c7d60.zip
opensim-SC_OLD-b43f36abf168a0cce7e71178e3d4766a717c7d60.tar.gz
opensim-SC_OLD-b43f36abf168a0cce7e71178e3d4766a717c7d60.tar.bz2
opensim-SC_OLD-b43f36abf168a0cce7e71178e3d4766a717c7d60.tar.xz
add expire time for aliens
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs b/OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs
index ed26989..027a7e2 100644
--- a/OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs
@@ -26,8 +26,10 @@
26 */ 26 */
27 27
28using OpenSim.Region.Framework.Scenes; 28using OpenSim.Region.Framework.Scenes;
29using OpenMetaverse;
29 30
30public interface IUserAccountCacheModule 31public interface IUserAccountCacheModule
31{ 32{
32 void Remove(string name); 33 void Remove(string name);
34 void Remove(UUID id);
33} 35}