minor: remove some mono compiler warnings

This commit is contained in:
Justin Clarke Casey
2009-07-15 20:49:58 +00:00
parent d89cf47d50
commit 5815162d7e
11 changed files with 18 additions and 21 deletions

View File

@@ -427,7 +427,7 @@ namespace OpenSim.Framework
if (name == String.Empty)
throw new Exception("Cannot interactively create region with no name");
IConfig newRegion = source.AddConfig(name);
source.AddConfig(name);
creatingNew = true;
}
@@ -437,7 +437,7 @@ namespace OpenSim.Framework
if (source.Configs[name] == null)
{
IConfig newRegion = source.AddConfig(name);
source.AddConfig(name);
creatingNew = true;
}