diff options
author | lbsa71 | 2007-09-19 00:30:55 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-19 00:30:55 +0000 |
commit | 8f0b03597b0bc8ea6873af9a55495407fae1ec56 (patch) | |
tree | f9f4de38379aebf2223ad4cb10a3d9ebcfa52a4f /OpenSim/Region/Environment/Modules/FriendsModule.cs | |
parent | * Moved SendLogoutPacket back to IClientAPI. (diff) | |
download | opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.zip opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.tar.gz opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.tar.bz2 opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.tar.xz |
* Modernized ScriptManager to new interface-based module calls.
* 'remove redundant this qualifier' ftw
Diffstat (limited to 'OpenSim/Region/Environment/Modules/FriendsModule.cs')
-rw-r--r-- | OpenSim/Region/Environment/Modules/FriendsModule.cs | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/OpenSim/Region/Environment/Modules/FriendsModule.cs b/OpenSim/Region/Environment/Modules/FriendsModule.cs index 411b838..c2a7291 100644 --- a/OpenSim/Region/Environment/Modules/FriendsModule.cs +++ b/OpenSim/Region/Environment/Modules/FriendsModule.cs | |||
@@ -1,12 +1,6 @@ | |||
1 | using System; | 1 | using OpenSim.Region.Environment.Interfaces; |
2 | using System.Collections.Generic; | 2 | using OpenSim.Region.Environment.Scenes; |
3 | using System.Text; | 3 | |
4 | using libsecondlife; | ||
5 | using OpenSim.Framework.Interfaces; | ||
6 | using OpenSim.Region.Environment.Scenes; | ||
7 | using OpenSim.Region.Environment.Interfaces; | ||
8 | |||
9 | |||
10 | namespace OpenSim.Region.Environment.Modules | 4 | namespace OpenSim.Region.Environment.Modules |
11 | { | 5 | { |
12 | public class FriendsModule : IRegionModule | 6 | public class FriendsModule : IRegionModule |
@@ -19,8 +13,7 @@ namespace OpenSim.Region.Environment.Modules | |||
19 | } | 13 | } |
20 | 14 | ||
21 | public void PostInitialise() | 15 | public void PostInitialise() |
22 | { | 16 | { |
23 | |||
24 | } | 17 | } |
25 | 18 | ||
26 | public void CloseDown() | 19 | public void CloseDown() |
@@ -37,4 +30,4 @@ namespace OpenSim.Region.Environment.Modules | |||
37 | return false; | 30 | return false; |
38 | } | 31 | } |
39 | } | 32 | } |
40 | } | 33 | } \ No newline at end of file |