diff options
author | UbitUmarov | 2016-11-18 15:16:11 +0000 |
---|---|---|
committer | UbitUmarov | 2016-11-18 15:16:11 +0000 |
commit | b43f36abf168a0cce7e71178e3d4766a717c7d60 (patch) | |
tree | 3156b902c61f8fa672b54f5d4363bd53f4ad9572 /OpenSim/Region/Framework | |
parent | avoid a null ref. (needs better way) (diff) | |
download | opensim-SC-b43f36abf168a0cce7e71178e3d4766a717c7d60.zip opensim-SC-b43f36abf168a0cce7e71178e3d4766a717c7d60.tar.gz opensim-SC-b43f36abf168a0cce7e71178e3d4766a717c7d60.tar.bz2 opensim-SC-b43f36abf168a0cce7e71178e3d4766a717c7d60.tar.xz |
add expire time for aliens
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs | 2 |
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 | ||
28 | using OpenSim.Region.Framework.Scenes; | 28 | using OpenSim.Region.Framework.Scenes; |
29 | using OpenMetaverse; | ||
29 | 30 | ||
30 | public interface IUserAccountCacheModule | 31 | public interface IUserAccountCacheModule |
31 | { | 32 | { |
32 | void Remove(string name); | 33 | void Remove(string name); |
34 | void Remove(UUID id); | ||
33 | } | 35 | } |