aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionInfo.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-07-15 20:49:58 +0000
committerJustin Clarke Casey2009-07-15 20:49:58 +0000
commit5815162d7ef1df861de082cee9e99cec14805572 (patch)
tree1ea8e534822d108da56788b42f07d021e515d22a /OpenSim/Framework/RegionInfo.cs
parent* Change server prompt from B.U.S.T to R.O.B.U.S.T, as per mailing list (diff)
downloadopensim-SC_OLD-5815162d7ef1df861de082cee9e99cec14805572.zip
opensim-SC_OLD-5815162d7ef1df861de082cee9e99cec14805572.tar.gz
opensim-SC_OLD-5815162d7ef1df861de082cee9e99cec14805572.tar.bz2
opensim-SC_OLD-5815162d7ef1df861de082cee9e99cec14805572.tar.xz
minor: remove some mono compiler warnings
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/RegionInfo.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs
index 8f9b551..2f7faff 100644
--- a/OpenSim/Framework/RegionInfo.cs
+++ b/OpenSim/Framework/RegionInfo.cs
@@ -427,7 +427,7 @@ namespace OpenSim.Framework
427 if (name == String.Empty) 427 if (name == String.Empty)
428 throw new Exception("Cannot interactively create region with no name"); 428 throw new Exception("Cannot interactively create region with no name");
429 429
430 IConfig newRegion = source.AddConfig(name); 430 source.AddConfig(name);
431 431
432 creatingNew = true; 432 creatingNew = true;
433 } 433 }
@@ -437,7 +437,7 @@ namespace OpenSim.Framework
437 437
438 if (source.Configs[name] == null) 438 if (source.Configs[name] == null)
439 { 439 {
440 IConfig newRegion = source.AddConfig(name); 440 source.AddConfig(name);
441 441
442 creatingNew = true; 442 creatingNew = true;
443 } 443 }