diff options
author | lbsa71 | 2007-10-10 18:24:13 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-10 18:24:13 +0000 |
commit | a40e7100a232827cffb813bbbbe9374324ad3448 (patch) | |
tree | 7f16f392d653f155ca90d5477c842db9c881f3ed /OpenSim/Region/Environment/Modules/WorldCommModule.cs | |
parent | Added unit tests, based on nunit for the IInventoryData (diff) | |
download | opensim-SC-a40e7100a232827cffb813bbbbe9374324ad3448.zip opensim-SC-a40e7100a232827cffb813bbbbe9374324ad3448.tar.gz opensim-SC-a40e7100a232827cffb813bbbbe9374324ad3448.tar.bz2 opensim-SC-a40e7100a232827cffb813bbbbe9374324ad3448.tar.xz |
* Gave ModuleLoader some good lovin'
* Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin
* Made LogBase thread-safe (or at least not thread-ignorant)
* Ignored some genned files
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Modules/WorldCommModule.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Modules/WorldCommModule.cs b/OpenSim/Region/Environment/Modules/WorldCommModule.cs index c2ec699..cf0c2ca 100644 --- a/OpenSim/Region/Environment/Modules/WorldCommModule.cs +++ b/OpenSim/Region/Environment/Modules/WorldCommModule.cs | |||
@@ -71,18 +71,18 @@ namespace OpenSim.Region.Environment.Modules | |||
71 | { | 71 | { |
72 | } | 72 | } |
73 | 73 | ||
74 | public void CloseDown() | 74 | public void Close() |
75 | { | 75 | { |
76 | } | 76 | } |
77 | 77 | ||
78 | public string GetName() | 78 | public string Name |
79 | { | 79 | { |
80 | return m_name; | 80 | get { return m_name; } |
81 | } | 81 | } |
82 | 82 | ||
83 | public bool IsSharedModule() | 83 | public bool IsSharedModule |
84 | { | 84 | { |
85 | return false; | 85 | get { return false; } |
86 | } | 86 | } |
87 | 87 | ||
88 | public void NewClient(IClientAPI client) | 88 | public void NewClient(IClientAPI client) |