aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid
diff options
context:
space:
mode:
authorAdam Frisby2008-07-30 08:17:19 +0000
committerAdam Frisby2008-07-30 08:17:19 +0000
commit2f8acdbe5073c21ab49ac0865eecd10db401eb32 (patch)
treed44b914e5e8103d93ea1cca8707b88b792d8ec04 /OpenSim/Grid
parentcleanups and refactoring to make it more readable. (diff)
downloadopensim-SC_OLD-2f8acdbe5073c21ab49ac0865eecd10db401eb32.zip
opensim-SC_OLD-2f8acdbe5073c21ab49ac0865eecd10db401eb32.tar.gz
opensim-SC_OLD-2f8acdbe5073c21ab49ac0865eecd10db401eb32.tar.bz2
opensim-SC_OLD-2f8acdbe5073c21ab49ac0865eecd10db401eb32.tar.xz
* Applying Mantis #1852 - Plugin Provider refactoring. Courtesy of Ryan/Sempuki.
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r--OpenSim/Grid/GridServer/GridManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs
index ec3ca19..98e670f 100644
--- a/OpenSim/Grid/GridServer/GridManager.cs
+++ b/OpenSim/Grid/GridServer/GridManager.cs
@@ -71,9 +71,9 @@ namespace OpenSim.Grid.GridServer
71 logloader.AddExtensionPoint ("/OpenSim/LogData"); 71 logloader.AddExtensionPoint ("/OpenSim/LogData");
72 72
73 // loader will try to load all providers (MySQL, MSSQL, etc) 73 // loader will try to load all providers (MySQL, MSSQL, etc)
74 // unless it is constrainted to the correct "id" 74 // unless it is constrainted to the correct "Provider" entry in the addin.xml
75 gridloader.AddFilter ("/OpenSim/GridData", new PluginIdFilter (provider)); 75 gridloader.AddFilter ("/OpenSim/GridData", new PluginProviderFilter (provider));
76 logloader.AddFilter ("/OpenSim/LogData", new PluginIdFilter (provider)); 76 logloader.AddFilter ("/OpenSim/LogData", new PluginProviderFilter (provider));
77 77
78 gridloader.Load(); 78 gridloader.Load();
79 logloader.Load(); 79 logloader.Load();