minor: remove a couple of compiler warnings

This commit is contained in:
Justin Clark-Casey (justincc)
2010-03-03 23:03:41 +00:00
parent a0b22a9adc
commit 60fde0c83a
2 changed files with 5 additions and 15 deletions

View File

@@ -351,7 +351,7 @@ namespace OpenSim.Framework
private void ReadNiniConfig(IConfigSource source, string name)
{
bool creatingNew = false;
// bool creatingNew = false;
if (source.Configs.Count == 0)
{
@@ -368,7 +368,7 @@ namespace OpenSim.Framework
source.AddConfig(name);
creatingNew = true;
// creatingNew = true;
}
if (name == String.Empty)
@@ -378,7 +378,7 @@ namespace OpenSim.Framework
{
source.AddConfig(name);
creatingNew = true;
// creatingNew = true;
}
IConfig config = source.Configs[name];
@@ -397,15 +397,8 @@ namespace OpenSim.Framework
RegionID = new UUID(regionUUID);
originRegionID = RegionID; // What IS this?!
// Region name
//
RegionName = name;
// Region location
//
string location = config.GetString("Location", String.Empty);
if (location == String.Empty)
@@ -421,12 +414,9 @@ namespace OpenSim.Framework
// Datastore (is this implemented? Omitted from example!)
//
DataStore = config.GetString("Datastore", String.Empty);
// Internal IP
//
IPAddress address;
if (config.Contains("InternalAddress"))