diff options
author | BlueWall | 2012-10-19 07:38:36 -0400 |
---|---|---|
committer | BlueWall | 2012-10-19 07:38:36 -0400 |
commit | 99bb6c930479fedee4e55a662fa715702f6110b7 (patch) | |
tree | d532dc4d9cec78db47b15fb9ba301ca0d6ec1d47 /OpenSim/Server/Handlers | |
parent | Add logging to help track sequence of events (diff) | |
download | opensim-SC_OLD-99bb6c930479fedee4e55a662fa715702f6110b7.zip opensim-SC_OLD-99bb6c930479fedee4e55a662fa715702f6110b7.tar.gz opensim-SC_OLD-99bb6c930479fedee4e55a662fa715702f6110b7.tar.bz2 opensim-SC_OLD-99bb6c930479fedee4e55a662fa715702f6110b7.tar.xz |
Move PluginManager
Move PluginManager out to OpenSimFramework for general use
Diffstat (limited to 'OpenSim/Server/Handlers')
-rw-r--r-- | OpenSim/Server/Handlers/Base/ServerConnector.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Server/Handlers/Base/ServerConnector.cs b/OpenSim/Server/Handlers/Base/ServerConnector.cs index 067fd2a..72014db 100644 --- a/OpenSim/Server/Handlers/Base/ServerConnector.cs +++ b/OpenSim/Server/Handlers/Base/ServerConnector.cs | |||
@@ -41,8 +41,7 @@ namespace OpenSim.Server.Handlers.Base | |||
41 | { | 41 | { |
42 | public virtual string ConfigURL | 42 | public virtual string ConfigURL |
43 | { | 43 | { |
44 | get; | 44 | get { return String.Empty; } |
45 | protected set; | ||
46 | } | 45 | } |
47 | 46 | ||
48 | public virtual string ConfigName | 47 | public virtual string ConfigName |
@@ -95,7 +94,10 @@ namespace OpenSim.Server.Handlers.Base | |||
95 | return config; | 94 | return config; |
96 | } | 95 | } |
97 | 96 | ||
98 | // We get our remote initial configuration for bootstrapping | 97 | // We get our remote initial configuration for bootstrapping in case |
98 | // we have no configuration in our main file or in an existing | ||
99 | // modular config file. This is the last resort to bootstrap the | ||
100 | // configuration, likely a new plugin loading for the first time. | ||
99 | private IConfigSource GetConfigSource() | 101 | private IConfigSource GetConfigSource() |
100 | { | 102 | { |
101 | IConfigSource source = null; | 103 | IConfigSource source = null; |