diff options
author | Tedd Hansen | 2008-01-05 17:15:38 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-01-05 17:15:38 +0000 |
commit | d430b7d815560baa34355f244e9b4ebc7df47dc5 (patch) | |
tree | e64af5d45a7f0178efdd292a877b30458ca1e72d /OpenSim/Region/Application | |
parent | Implicit interface definitions (maybe Mono won't crash?) (diff) | |
download | opensim-SC_OLD-d430b7d815560baa34355f244e9b4ebc7df47dc5.zip opensim-SC_OLD-d430b7d815560baa34355f244e9b4ebc7df47dc5.tar.gz opensim-SC_OLD-d430b7d815560baa34355f244e9b4ebc7df47dc5.tar.bz2 opensim-SC_OLD-d430b7d815560baa34355f244e9b4ebc7df47dc5.tar.xz |
Removed ModuleName because its like that and thats the way it is (according to Mono)
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/IApplicationPlugin.cs | 1 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSimMain.cs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/IApplicationPlugin.cs b/OpenSim/Region/Application/IApplicationPlugin.cs index 45b0cd0..4f81354 100644 --- a/OpenSim/Region/Application/IApplicationPlugin.cs +++ b/OpenSim/Region/Application/IApplicationPlugin.cs | |||
@@ -37,6 +37,5 @@ namespace OpenSim | |||
37 | { | 37 | { |
38 | void Initialise(OpenSimMain openSim); | 38 | void Initialise(OpenSimMain openSim); |
39 | void Close(); | 39 | void Close(); |
40 | string ModuleName(); | ||
41 | } | 40 | } |
42 | } \ No newline at end of file | 41 | } \ No newline at end of file |
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index 9f6d934..14715b8 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs | |||
@@ -348,7 +348,6 @@ namespace OpenSim | |||
348 | foreach (TypeExtensionNode node in nodes) | 348 | foreach (TypeExtensionNode node in nodes) |
349 | { | 349 | { |
350 | IApplicationPlugin plugin = (IApplicationPlugin)node.CreateInstance(); | 350 | IApplicationPlugin plugin = (IApplicationPlugin)node.CreateInstance(); |
351 | MainLog.Instance.Debug("PLUGINS", "Loading OpenSim application plugin(" + modcount + "): ", plugin.ModuleName()); | ||
352 | 351 | ||
353 | plugin.Initialise(this); | 352 | plugin.Initialise(this); |
354 | m_plugins.Add(plugin); | 353 | m_plugins.Add(plugin); |