aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/PluginLoader.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/PluginLoader.cs b/OpenSim/Framework/PluginLoader.cs
index 7a09aee..7ceb0b2 100644
--- a/OpenSim/Framework/PluginLoader.cs
+++ b/OpenSim/Framework/PluginLoader.cs
@@ -198,7 +198,7 @@ namespace OpenSim.Framework
198 if (AddinManager.IsInitialized == true) 198 if (AddinManager.IsInitialized == true)
199 return; 199 return;
200 200
201 log.Info("[PLUGINS]: Initialzing"); 201 log.Info("[PLUGINS]: Initializing");
202 202
203 AddinManager.AddinLoadError += on_addinloaderror_; 203 AddinManager.AddinLoadError += on_addinloaderror_;
204 AddinManager.AddinLoaded += on_addinloaded_; 204 AddinManager.AddinLoaded += on_addinloaded_;
@@ -240,7 +240,7 @@ namespace OpenSim.Framework
240 if (Directory.Exists("addin-db-001")) 240 if (Directory.Exists("addin-db-001"))
241 Directory.Delete("addin-db-001", true); 241 Directory.Delete("addin-db-001", true);
242 } 242 }
243 catch (IOException e) 243 catch (IOException)
244 { 244 {
245 // If multiple services are started simultaneously, they may 245 // If multiple services are started simultaneously, they may
246 // each test whether the directory exists at the same time, and 246 // each test whether the directory exists at the same time, and